~ubuntu-branches/ubuntu/saucy/fdclone/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Taketoshi Sano
  • Date: 2003-08-09 09:58:31 UTC
  • Revision ID: james.westby@ubuntu.com-20030809095831-4yuuz5uvb09dsi6z
Tags: 2.04a-1
* New upstream release
* update debian/watch. now I can use "uscan" command. :)

Show diffs side-by-side

added added

removed removed

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