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