Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > media > contrib > by-pkgid > 97998d8cc380164e5f627fabc42a9119 > scriptlet

tutos-1.2.20050306-2mdk.noarch.rpm

POSTIN

/bin/sh
#if [ "$1" = "1" ]; then /sbin/service httpd condrestart; fi 

if [ -f /var/lock/subsys/httpd ]; then
	/etc/rc.d/init.d/httpd restart 1>&2
else
	echo "Run \"service httpd start\" to start apache http daemon."
fi

POSTUN

/bin/sh
#if [ "$1" = "0" ]; then /sbin/service httpd condrestart; else /sbin/service httpd condreload; fi 

if [ -f /var/lock/subsys/httpd ]; then
	/etc/rc.d/init.d/httpd restart 1>&2
fi