소스 검색

Fix rendering problem on Ubuntu18.04

tags/v0.2.0^2
N 5 년 전
부모
커밋
a35ec9271d
No account linked to committer's email address
1개의 변경된 파일8개의 추가작업 그리고 6개의 파일을 삭제
  1. +8
    -6
      chrony/map.jinja

+ 8
- 6
chrony/map.jinja 파일 보기

@@ -12,9 +12,11 @@
base='chrony'
) %}

-{# Debian distros check /etc/default/rcS to determine UTC setting #}
-{% if grains['os_family'] == "Debian" %}
- {% if salt['cmd.run']('grep UTC=no /etc/default/rcS', output_loglevel='quiet') %}
- {% do chrony['otherparams'].remove('rtconutc') %}
- {% endif %}
-{% endif %}
{# Debian distros check /etc/default/rcS to determine UTC setting #}
{% if grains['os_family'] == "Debian" %}
{% if salt['cmd.run']('grep UTC=no /etc/default/rcS', output_loglevel='quiet') %}
{%- if chrony['otherparams'] and 'rtconutc' in chrony['otherparams'] %}
{% do chrony['otherparams'].remove('rtconutc') %}
{%- endif %}
{% endif %}
{% endif %}

Loading…
취소
저장