File: bugzilla.prerm

package info (click to toggle)
bugzilla 2.14.2-0woody4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,460 kB
  • ctags: 435
  • sloc: perl: 19,533; sh: 235; makefile: 180
file content (46 lines) | stat: -rw-r--r-- 1,331 bytes parent folder | download
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
35
36
37
38
39
40
41
42
43
44
45
46
#! /bin/sh
# prerm script for #PACKAGE#
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <prerm> `remove'
#        * <old-prerm> `upgrade' <new-version>
#        * <new-prerm> `failed-upgrade' <old-version>
#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
#        * <deconfigured's-prerm> `deconfigure' `in-favour'
#          <package-being-installed> <version> `removing'
#          <conflicting-package> <version>
# for details, see /usr/share/doc/packaging-manual/

case "$1" in
    upgrade)
	#Downgrade to version prior 2.13+cvs20010819-1 isn't possible
	if dpkg --compare-versions $2 lt 2.13+cvs20010819-1 ; then
		echo "It is not possible to downgrade to $2 version of bugzilla." >&2
		echo "You have to purge the current bugzilla packages before" >&2
		echo "being able to install an older version." >&2
		echo "As purge doesn't drop the database you also have to do" >&2
		echo "it by hand or you may give an other databasename" >&2
		exit 1
	fi     
        ;;
    failed-upgrade)
    	exit 1
	;;
    remove|deconfigure)
        ;;
    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 0
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0