Saltstack Official Apache Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

36 行
650B

  1. {% if grains['os_family']=="Debian" %}
  2. include:
  3. - apt
  4. - apache
  5. mod-php5:
  6. pkg.installed:
  7. - name: libapache2-mod-php5
  8. - order: 180
  9. - require:
  10. - pkg: apache
  11. a2enmod php5:
  12. cmd.run:
  13. - unless: ls /etc/apache2/mods-enabled/php5.load
  14. - order: 225
  15. - require:
  16. - pkg: mod-php5
  17. - watch_in:
  18. - cmd: apache-restart
  19. {% if 'apache' in pillar and 'php-ini' in pillar['apache'] %}
  20. /etc/php5/apache2/php.ini:
  21. file.managed:
  22. - source: {{ pillar['apache']['php-ini'] }}
  23. - order: 225
  24. - watch_in:
  25. - cmd: apache-restart
  26. - require:
  27. - pkg: apache
  28. - pkg: php5
  29. {% endif %}
  30. {% endif %}