summaryrefslogtreecommitdiffstats
path: root/abs/core/runit/runit.install
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2011-08-19 18:23:53 (GMT)
committerJames Meyer <james.meyer@operamail.com>2011-08-19 18:23:53 (GMT)
commit528cb144ccabf66fb6278f3025a3496d73a59a20 (patch)
tree6dcbcbe33b9dc96a441dfee3d3df96a12ef912e3 /abs/core/runit/runit.install
parent855cc7eb5a1ec13cc4ac28a910c79633703aa18f (diff)
parentf8e6fc954ed4502f65355e30664fdbdbcd045cd7 (diff)
downloadlinhes_pkgbuild-528cb144ccabf66fb6278f3025a3496d73a59a20.zip
linhes_pkgbuild-528cb144ccabf66fb6278f3025a3496d73a59a20.tar.gz
linhes_pkgbuild-528cb144ccabf66fb6278f3025a3496d73a59a20.tar.bz2
Merge remote-tracking branch 'origin/testing' into testing
Diffstat (limited to 'abs/core/runit/runit.install')
-rwxr-xr-xabs/core/runit/runit.install60
1 files changed, 40 insertions, 20 deletions
diff --git a/abs/core/runit/runit.install b/abs/core/runit/runit.install
index 392d7be..b62e94e 100755
--- a/abs/core/runit/runit.install
+++ b/abs/core/runit/runit.install
@@ -1,38 +1,58 @@
# 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
+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
- rm -f /sbin/reboot
- rm -f /sbin/poweroff
}
pre_upgrade () {
-if [ ! -f /sbin/halt-init ]
-then
- mv /sbin/halt /sbin/halt-init
+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 [ ! -f /sbin/shutdown-init ]
-then
- mv /sbin/shutdown /sbin/shutdown-init
+if [ -e /sbin/poweroff ] ; then
+ rm -f /sbin/poweroff
fi
- rm -f /sbin/reboot
- rm -f /sbin/poweroff
}
post_install () {
- [ -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
+ [ -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