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

23 行
398B

  1. {% from "apache/map.jinja" import apache with context %}
  2. apache:
  3. pkg:
  4. - installed
  5. - name: {{ apache.server }}
  6. service:
  7. - running
  8. - name: {{ apache.service }}
  9. - enable: True
  10. apache-reload:
  11. module:
  12. - wait
  13. - name: service.reload
  14. - m_name: {{ apache.service }}
  15. apache-restart:
  16. module:
  17. - wait
  18. - name: service.restart
  19. - m_name: {{ apache.service }}