mirror of https://gitee.com/openkylin/cups.git
20 lines
286 B
Plaintext
20 lines
286 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
case "$1" in
|
||
|
purge)
|
||
|
rm -rf /etc/cups/interfaces
|
||
|
rm -rf /etc/cups/ppd
|
||
|
;;
|
||
|
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "postrm called with unknown argument \`$1'" >&2
|
||
|
exit 0
|
||
|
|
||
|
esac
|