summaryrefslogtreecommitdiffstats
path: root/debian/wide-dhcpv6-relay.postrm
blob: dac56af1ff99e8e71ef2aae115435326e124de67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e

case "$1" in
    purge)
        if [ -e /etc/default/wide-dhcpv6-relay ]; then
            rm -f /etc/default/wide-dhcpv6-relay
	fi
        ;;
    *)
        # Nothing to do...
        ;;
esac

#DEBHELPER#

exit 0