Merge from vendor branch KAME:
[pkgsrc.git] / print / cups / pkg / DEINSTALL
1 #!/bin/sh
2 #
3 # $NetBSD$
4 #
5
6 PKGNAME=$1
7
8 case $2 in
9 DEINSTALL)
10         ;;
11 POST-DEINSTALL)
12         /bin/cat << EOF
13 ===========================================================================
14 If you won't be using ${PKGNAME} any longer, you may want to remove the
15 following directories:
16
17         /etc/cups
18         /var/cups
19 ===========================================================================
20 EOF
21         ;;
22 *)
23         echo "Unexpected argument: $2"
24         exit 1
25         ;;
26 esac
27 exit 0