summaryrefslogtreecommitdiff
path: root/debian/php5-sapi.postrm
blob: ea609e71e2433e76a4bd6ca313e60ed5c71f8f17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh

set -e

phpini=/etc/php5/@sapi@/php.ini

case "$1" in
purge)
	if which ucf >/dev/null 2>&1; then
		ucf --purge $phpini
	fi
	rm -f $phpini
	;;
esac

#DEBHELPER#

exit 0