File: postrm

package info (click to toggle)
mailman 1.1-10
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,572 kB
  • ctags: 1,485
  • sloc: python: 12,562; makefile: 625; ansic: 336; sh: 312
file content (34 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh -e
#
# Debian package postrm
# Version 1.1
#
# Robert Leslie <rob@mars.org>

case "$1" in
  remove)
    ;;

  upgrade)
    ;;

  purge)
    rm -r /var/lib/mailman
    rm -r /etc/mailman
    ;;

  abort-install|abort-upgrade)
    ;;

  failed-upgrade|disappear)
    ;;

  *)
    echo "postrm called with unknown argument \`$1'" >&2
    exit 0
    ;;
esac

#DEBHELPER#

exit 0