opnsense-ports/www/apache24/files/pkg-deinstall.in
Franco Fichtner a737ce6b05 */*: sync previously available, but unused ports
Taken from: FreeBSD
2015-04-22 06:45:04 +02:00

19 lines
297 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
MPM_FALLBACK="%%ETCDIR%%/modules.d/%%MPMF%%"
_cleanup(){
if [ -f ${MPM_FALLBACK} ]; then
echo -n "remove fallback MPM : "
/bin/rm -vf ${MPM_FALLBACK}
fi
}
# run only if build with modular MPM
if [ "x$2" = "xDEINSTALL" ]; then
%%MPM_FALLBACK_CHECK%%_cleanup
fi