source: trunk/debathena/config/auto-update/debian/debathena-auto-update.prerm @ 24936

Revision 24936, 1.0 KB checked in by jdreed, 13 years ago (diff)
Fix typos in maintainer scripts
Line 
1#!/bin/sh
2# prerm script for debathena-auto-update
3#
4# see: dh_installdeb(1)
5
6set -e
7
8# summary of how this script can be called:
9#        * <prerm> `remove'
10#        * <old-prerm> `upgrade' <new-version>
11#        * <new-prerm> `failed-upgrade' <old-version>
12#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
13#        * <deconfigured's-prerm> `deconfigure' `in-favour'
14#          <package-being-installed> <version> `removing'
15#          <conflicting-package> <version>
16# for details, see http://www.debian.org/doc/debian-policy/ or
17# the debian-policy package
18
19UPD_CRONFILE=/etc/cron.d/athena-auto-update
20UPG_CRONFILE=/etc/cron.d/athena-auto-upgrade
21
22case "$1" in
23    remove)
24        rm -f $UPD_CRONFILE
25        rm -f $UPG_CRONFILE
26    ;;
27
28    upgrade|deconfigure)
29       
30    ;;
31
32    failed-upgrade)
33    ;;
34
35    *)
36        echo "prerm called with unknown argument \`$1'" >&2
37        exit 1
38    ;;
39esac
40
41# dh_installdeb will replace this with shell code automatically
42# generated by other debhelper scripts.
43
44#DEBHELPER#
45
46exit 0
Note: See TracBrowser for help on using the repository browser.