Changes

Jump to navigation Jump to search
134 bytes removed ,  13:03, 30 October 2008
no edit summary
if [ -z $1 ]; then
echo "Which module would you like to enable?" echo -n "Your choices are: " ls /etc/apache2/mods-available/*.load | \ sed -e "s,$SYSCONFDIR/mods-available/,,g" | sed -e 's/\.load$//g;' | xargs echo echo -n "Module name? " read MODNAME
else
MODNAME=$1
fi
#figure out if we are on a prefork or threaded mpm
if [ -x /usr/sbin/apache2 ]; then
PREFORK=`/usr/sbin/apache2 -l | grep -E 'prefork|itk' || true`
fi
if [ "$MODNAME" = "cgi" ] && [ -z $PREFORK ]; then
MODNAME="cgid" echo "Your MPM seems to be threaded. Selecting cgid instead of cgi."
fi
if [ -e $SYSCONFDIR/mods-enabled/$MODNAME.load ]; then
echo "This module is already enabled!" exit 0
fi
if ! [ -e $SYSCONFDIR/mods-available/$MODNAME.load ]; then
echo "This module does not exist!" >&2 exit 1
fi
DEPENDS=`grep "# Depends:" $SYSCONFDIR/mods-available/$MODNAME.load|cut -f2 -d:`
if [ ! -z "$DEPENDS" ]; then
for i in $DEPENDS; do echo "Enabling $i as a dependency" /usr/sbin/a2enmod "$i"; done
fi
</source>
[[Category:Apache]]
[[Category:System Administration]]
[[Category:applications]]
4,558

edits

Navigation menu