Saltstack Official Apache Formula
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

22 rindas
514B

  1. {% if grains['os_family']=="Debian" %}
  2. {% from "apache/map.jinja" import apache with context %}
  3. include:
  4. - apache
  5. apache_own-default-vhost:
  6. file.managed:
  7. - name: {{ apache.vhostdir }}/000-default.conf
  8. - source: salt://apache/files/{{ salt['grains.get']('os_family') }}/sites-available/000-default.conf
  9. - require:
  10. - pkg: apache
  11. - watch_in:
  12. - module: apache-reload
  13. - require_in:
  14. - module: apache-restart
  15. - module: apache-reload
  16. - service: apache
  17. {% endif %}