root/alternc-awstats/branches/r0/debian/postrm

Revision 1030, 426 bytes (checked in by anonymous, 4 years ago)

Initial revision

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1 #!/bin/sh -e
2
3 # Debian alternc-awstats prerm
4 # Benjamin Sonntag <benjamin@alternc.org>
5
6 case "$1" in
7 remove)
8     ;;
9
10 upgrade)
11     ;;
12
13 purge)
14     # Remove any quota
15     /usr/lib/alternc/quota_delete aws
16
17     # Remove the config files
18     rm /etc/webalizer/* -f
19     ;;
20
21 failed-upgrade|abort-install|abort-upgrade|disappear)
22     ;;
23
24 *)
25     echo "postrm called with unknown argument '$1'" >&2
26     exit 1
27     ;;
28 esac
29
30 #DEBHELPER#
31
Note: See TracBrowser for help on using the browser.