mirror of https://gitee.com/openkylin/cups.git
19 lines
305 B
Plaintext
19 lines
305 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
case "$1" in
|
||
|
purge)
|
||
|
rm -f /var/lib/cups/ppds.dat /etc/cups/raw.convs /etc/cups/raw.types
|
||
|
;;
|
||
|
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "postrm called with unknown argument \`$1'" >&2
|
||
|
exit 0
|
||
|
|
||
|
esac
|