浏览代码

Merge pull request #15 from noelmcloughlin/fixes

Fix rendering - regression
tags/v0.2.0
Niels Abspoel 5 年前
父节点
当前提交
6603ab21c8
没有帐户链接到提交者的电子邮件
共有 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 %}

正在加载...
取消
保存