summaryrefslogtreecommitdiff
path: root/debian/php5-cgi.prerm
blob: 7a842cea6d8e9bcb77a9c708f123f90479e6c0e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "remove" ]; then
    update-alternatives --remove php-cgi /usr/bin/php5-cgi
    update-alternatives --remove php-cgi-bin /usr/lib/cgi-bin/php5
fi

#DEBHELPER#

exit 0