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

17 行
320B

  1. {% if grains['os_family']=="Debian" %}
  2. {% from "apache/map.jinja" import apache with context %}
  3. include:
  4. - apache
  5. a2dissite 000-default.conf:
  6. cmd.run:
  7. - unless: test ! -f /etc/apache2/sites-enabled/000-default.conf
  8. - require:
  9. - pkg: apache
  10. - watch_in:
  11. - module: apache-reload
  12. {% endif %}