Alternc  latest
Alternc logiel libre pour l'hébergement
alternc-slave.prerm
Go to the documentation of this file.
1 #!/bin/sh -e
2 
3 # Debian alternc prerm
4 # Benjamin Sonntag <benjamin@alternc.org>
5 
6 case "$1" in
7 remove)
8  # remove postfix from the sasl group (might not be user will though...)
9  deluser --quiet postfix sasl || true
10  ;;
11 
12 upgrade)
13  ;;
14 
15 purge)
16  ;;
17 
18 failed-upgrade|abort-install|abort-upgrade|disappear)
19  ;;
20 
21 *)
22  echo "postrm called with unknown argument '$1'" >&2
23  exit 1
24  ;;
25 esac
26 
27 #DEBHELPER#