Add user-defined envvars

This commit is contained in:
Dex Bleeker 2016-07-16 17:21:46 +02:00
parent adc80edd39
commit 7b7deaeb5b
2 changed files with 8 additions and 0 deletions

View File

@ -37,3 +37,7 @@ export LANG
## If you need a higher file descriptor limit, uncomment and adjust the
## following line (default is 8192):
#APACHE_ULIMIT_MAX_FILES='ulimit -n 65536'
{%- for envvar in salt['pillar.get']('apache:envvars', []) %}
{{ envvar }}
{%- endfor %}

View File

@ -47,3 +47,7 @@ export LANG
## This will produce a verbose output on package installations of web server modules and web application
## installations which interact with Apache
#export APACHE2_MAINTSCRIPT_DEBUG=1
{%- for envvar in salt['pillar.get']('apache:envvars', []) %}
{{ envvar }}
{%- endfor %}