~ubuntu-branches/ubuntu/maverick/awstats/maverick-security

« back to all changes in this revision

Viewing changes to debian/awstats.postrm

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2004-05-05 05:12:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040505051207-ren3kcn31tp97db6
Tags: 6.0-4
Really fix bug#247265. Really closes: Bug#247265 (thanks to Edward
J. Shornock <ed@crazeecanuck.homelinux.net>).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
case "$1" in
 
6
    purge)
 
7
        rm -rf /var/lib/awstats
 
8
        ;;
 
9
 
 
10
    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
11
        ;;
 
12
 
 
13
    *)
 
14
        echo "postrm called with unknown argument \`$1'" >&2
 
15
        exit 1
 
16
        ;;
 
17
 
 
18
esac
 
19
 
 
20
#DEBHELPER#
 
21
 
 
22
exit 0