Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 389965 | Differences between
and this patch

Collapse All | Expand All

(-)/etc/init.d/apache2.orig (-1 / +1 lines)
Lines 102-108 Link Here
102
	${APACHE2} ${APACHE2_OPTS} -k stop
102
	${APACHE2} ${APACHE2_OPTS} -k stop
103
103
104
	i=0
104
	i=0
105
	while ( ! test -f "${PIDFILE}" && pgrep -P ${PID} apache2 >/dev/null ) \
105
	while ( test -f "${PIDFILE}" && pgrep -P ${PID} apache2 >/dev/null ) \
106
		&& [ $i -lt ${TIMEOUT} ]; do
106
		&& [ $i -lt ${TIMEOUT} ]; do
107
		sleep 1 && i=$(expr $i + 1)
107
		sleep 1 && i=$(expr $i + 1)
108
	done
108
	done

Return to bug 389965