summaryrefslogtreecommitdiff
path: root/debian/foomatic-filters.postrm
blob: 25c5dbda231da5117f5e62acb719e26e30ed8612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

case "$1" in
    purge)
        rm -f /etc/foomatic/filter.conf /etc/foomatic/defaultspooler
        ucf --purge /etc/foomatic/filter.conf || true
        ;;
esac

#DEBHELPER#

exit 0