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

16 行
204B

  1. include:
  2. - apt
  3. {% if grains['os']=="Ubuntu" %}
  4. php-fpm:
  5. pkg.installed:
  6. - name: php5-fpm
  7. - order: 175
  8. service.running:
  9. - name: php5-fpm
  10. - enable: True
  11. - order: 455
  12. {% endif %}