Saltstack Official Linux Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
332B

  1. {%- from "linux/map.jinja" import network with context %}
  2. {%- if network.enabled %}
  3. /etc/resolv.conf:
  4. file.managed:
  5. - source: salt://linux/files/resolv.conf
  6. - mode: 644
  7. - template: jinja
  8. linux_resolvconf_disable:
  9. cmd.run:
  10. - name: resolvconf --disable-updates
  11. - onlyif: resolvconf --updates-are-enabled
  12. {%- endif %}