blob: c6df7e32763a573013bb1166c2cfb18509390fea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -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
|