summaryrefslogtreecommitdiffstats
path: root/abs/core/runit-scripts/runit.install
blob: 2f9cf901d2a0c5b8cdc14b5d7db8979a8c87b691 (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
# arg 1:  the new package version

post_install () {
 
  [ -e /service ] ||  mkdir /service
  servicelist="acpid cron frontend lircd ntpd alsa-utils avahi dbus sshd rsyslog tty2 tty3"
  for i in $servicelist
  do
   ln -s /etc/sv/$i /service/$i
  done

  [ -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


}

# arg 1:  the new package version
# arg 2:  the old package version

post_upgrade(){

  [ -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

  if [ -e /var/service ]
  then
	  if [ ! -e /service ]
	  then
		  mkdir /service
		  cd /var/service
		  for i in *
		  do
			  ln -s /etc/sv/$i /service/$i
		  done
	  fi
	  
  fi

	 
}

op=$1
shift

$op $*