Sophie

Sophie

distrib > PLD > ac > amd64 > by-pkgid > 335a4631fa5928cb2f213242ac02bf67 > scriptlet

apache1-mod_become-1.3-3.amd64.rpm

POSTIN

/bin/sh
echo "mod_become: This module is not turned on by default; if you're sure,"
echo "mod_become: uncomment the appropriate line in Apache's config file."

POSTUN

/bin/sh
if [ "$1" = "0" ]; then
	{
skip_auto_restart() {
[ -f /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm
[ -f /etc/sysconfig/apache ] && . /etc/sysconfig/apache
echo ${RPM_SKIP_AUTO_RESTART:-no}
};
if [ $(skip_auto_restart) = no ]; then
if [ -f /var/lock/subsys/apache ]; then
/sbin/service apache restart 1>&2 || :;
fi
fi };fi

Triggers

apache1-mod_become < 1.3-1.1

/bin/sh
# check that they're not using old apache.conf
if grep -q '^Include conf\.d' /etc/apache/apache.conf; then
	/usr/sbin/apxs1 -e -A -n become /etc/apache/modules/mod_become.so 1>&2
fi