blob: 1728bc6451ecb1e2ce6ee44147a835ce3328a65e (
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
|
# arg 1: the new package version
pre_install () {
if [ ! -f /sbin/halt-init ]
then
mv /sbin/halt /sbin/halt-init
mv /sbin/shutdown /sbin/shutdown-init
fi
rm -f /sbin/reboot
rm -f /sbin/poweroff
}
pre_upgrade () {
if [ ! -f /sbin/halt-init ]
then
mv /sbin/halt /sbin/halt-init
fi
if [ ! -f /sbin/shutdown-init ]
then
mv /sbin/shutdown /sbin/shutdown-init
fi
rm -f /sbin/reboot
rm -f /sbin/poweroff
}
post_install () {
mkdir /var/service
[ -e /sbin/halt ] || ln -s /sbin/halt.script /sbin/halt
[ -e /sbin/reboot ] || ln -s /sbin/reboot.script /sbin/reboot
[ -e /sbin/poweroff ] || ln -s /sbin/poweroff.script /sbin/poweroff
[ -e /sbin/reboot.init ] || ln -s /sbin/halt-init /sbin/reboot.init
[ -e /sbin/poweroff.init ] || ln -s /sbin/halt-init /sbin/poweroff.init
[ -e /sbin/shutdown ] || ln -s /sbin/shutdown.script /sbin/shutdown
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade(){
/bin/true
}
op=$1
shift
$op $*
|