diff options
Diffstat (limited to 'Services/apache/sx-httpd.sh')
-rw-r--r-- | Services/apache/sx-httpd.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Services/apache/sx-httpd.sh b/Services/apache/sx-httpd.sh index 707b16d..b404dd6 100644 --- a/Services/apache/sx-httpd.sh +++ b/Services/apache/sx-httpd.sh @@ -75,3 +75,22 @@ function start_service_httpd { tail -f /dev/null & wait ${!} done } + + + +# set env var $2 (val $3) in file $1 +function setEnvironmentVariableInFile { + if [ -z "$3" ]; then + echo "Environment variable '$2' not set." + return + fi + echo "SetEnv $2 $3" >> $1 +} + + +function setSys2HttpEnvironmentVariable { + echo "" >> $1 + for _curVar in `env | awk -F = '{print $1}'`;do + setEnvironmentVariableInFile $1 ${_curVar} ${!_curVar} + done +}
\ No newline at end of file |