File load_configuration of Package apache2 (Revision bcf504bd121e203da0cc66ecca65f2ed)
Currently displaying revision bcf504bd121e203da0cc66ecca65f2ed, show latest
1
#!/bin/bash
2
3
: ${sysconfig_apache:=/etc/sysconfig/apache2}
4
5
#
6
# load the configuration, but only if it hasn't been done already
7
#
8
if [ -z "$APACHE_MODULES" ]; then
9
. $sysconfig_apache
10
fi
11