Saltstack Official Apache Formula
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- {% from "apache/map.jinja" import apache with context %}
-
- {% if grains['os_family']=="Debian" %}
- include:
- - apache
-
- libapache2-mod-upload-progress:
- pkg.installed
-
- a2enmod upload_progress:
- cmd.run:
- - unless: ls /etc/apache2/mods-enabled/upload_progress.load
- - order: 255
- - require:
- - pkg: libapache2-mod-upload-progress
- - watch_in:
- - module: apache-restart
- - require_in:
- - module: apache-restart
- - module: apache-reload
- - service: apache
- {% endif %}
|