blob: b62e94e0e28f07023c416fc3747e59af469b763a (
plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# arg 1: the new package version
pre_install () {
if [ ! -L /sbin/halt ] ; then
if [ -f /sbin/halt ] ; then
mv /sbin/halt /sbin/halt-init
fi
fi
if [ ! -L /sbin/shutdown ] ; then
if [ -f /sbin/shutdown ] ; then
mv /sbin/shutdown /sbin/shutdown-init
fi
fi
if [ -e /sbin/reboot ] ; then
rm -f /sbin/reboot
fi
if [ -e /sbin/poweroff ] ; then
rm -f /sbin/poweroff
fi
}
pre_upgrade () {
if [ ! -f /sbin/halt-init ] ; then
if [ ! -L /sbin/halt ] ; then
mv /sbin/halt /sbin/halt-init
fi
fi
if [ ! -f /sbin/shutdown-init ] ; then
if [ ! -L /sbin/shutdown ] ; then
mv /sbin/shutdown /sbin/shutdown-init
fi
fi
if [ -e /sbin/reboot ] ; then
rm -f /sbin/reboot
fi
if [ -e /sbin/poweroff ] ; then
rm -f /sbin/poweroff
fi
}
post_install () {
[ -e /sbin/halt ] || ln -sf /sbin/halt.script /sbin/halt
[ -e /sbin/reboot ] || ln -sf /sbin/reboot.script /sbin/reboot
[ -e /sbin/poweroff ] || ln -sf /sbin/poweroff.script /sbin/poweroff
[ -e /sbin/reboot.init ] || ln -sf /sbin/halt-init /sbin/reboot.init
[ -e /sbin/poweroff.init ] || ln -sf /sbin/halt-init /sbin/poweroff.init
[ -e /sbin/shutdown ] || ln -sf /sbin/shutdown.script /sbin/shutdown
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade(){
post_install
}
op=$1
shift
$op $*
|