~ubuntu-branches/ubuntu/vivid/trousers/vivid

« back to all changes in this revision

Viewing changes to debian/trousers.prerm

  • Committer: Package Import Robot
  • Author(s): Pierre Chifflier
  • Date: 2012-07-04 21:57:22 UTC
  • Revision ID: package-import@ubuntu.com-20120704215722-s1lysmoe1gul02n4
Tags: 0.3.9-2
Add workaround for upgrade failure for versions before 0.3.8-3
(Closes: #679621)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# prerm script for trousers
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -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
 
 
19
 
 
20
case "$1" in
 
21
    failed-upgrade)
 
22
        if dpkg --compare-versions "$2" lt 0.3.8-3; then
 
23
            # hack to avoid #676828
 
24
            # removing the executable will make the init script exit gracefully
 
25
            rm -f /usr/sbin/tcsd
 
26
            # kill tcsd (and any other process owned by the tss user)
 
27
            killall -u tss  2>/dev/null || true
 
28
        fi
 
29
    ;;
 
30
 
 
31
    *)
 
32
        echo "prerm called with unknown argument \`$1'" >&2
 
33
        exit 1
 
34
    ;;
 
35
esac
 
36
 
 
37
# dh_installdeb will replace this with shell code automatically
 
38
# generated by other debhelper scripts.
 
39
 
 
40
#DEBHELPER#
 
41
 
 
42
exit 0