Skip to content
Snippets Groups Projects
Select Git revision
  • 3d474b52637229aebf3dabd2a4438d620d89a94b
  • master default
  • fix-remote-url_v4.9.1
  • fix-remote-url_v4.8.3
  • fix-remote-url_v4.8.x
  • fix-remote-url_v4.7.x
  • fix-remote-url_v4.6.0
  • fix-remote-urls
8 results

questiontestedit.php

Blame
  • mod_headers.sls 360 B
    {% if grains['os_family']=="Debian" %}
    
    include:
      - apache
    
    a2enmod headers:
      cmd.run:
        - unless: ls /etc/apache2/mods-enabled/headers.load
        - order: 255
        - require:
          - pkg: apache
        - watch_in:
          - module: apache-restart
        - require_in:
          - module: apache-restart
          - module: apache-reload
          - service: apache
    
    {% endif %}