File: molly-guard.preinst

package info (click to toggle)
molly-guard 0.6.4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 88 kB
  • ctags: 11
  • sloc: xml: 286; sh: 203; makefile: 41
file content (48 lines) | stat: -rwxr-xr-x 1,335 bytes parent folder | download | duplicates (2)
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
47
48
#!/bin/sh
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <new-preinst> `install'
#        * <new-preinst> `install' <old-version>
#        * <new-preinst> `upgrade' <old-version>
#        * <old-preinst> `abort-upgrade' <new-version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package


case "$1" in
    install|upgrade)
        mkdir -p /lib/molly-guard

        # Cleanup erroneous diversions added in 0.6.0
        for cmd in pm-hibernate pm-suspend pm-suspend-hybrid ; do
            dpkg-divert --package molly-guard --rename --remove /sbin/$cmd
        done

        for cmd in halt poweroff reboot shutdown coldreboot ; do
            dpkg-divert --package molly-guard --divert /lib/molly-guard/$cmd --rename /sbin/$cmd
        done

        # Disable diversions of pm-utils binaries until #812545 is fixed
        #for cmd in pm-hibernate pm-suspend pm-suspend-hybrid ; do
        #    dpkg-divert --package molly-guard --divert /lib/molly-guard/$cmd --rename /usr/sbin/$cmd
        #done
    ;;

    abort-upgrade)
    ;;

    *)
        echo "preinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

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

#DEBHELPER#

exit 0