File load_configuration of Package apache2 (Revision 46)
Currently displaying revision 46, 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