diff options
author | James Meyer <james.meyer@operamail.com> | 2009-02-17 04:54:11 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-02-17 04:54:11 (GMT) |
commit | 52e7c7e6d99e3d515936d9c51f9fbe65179e5153 (patch) | |
tree | 54f63137199aa3b3db7b22b84e820fe29842fc82 /abs/core-testing/runit/runit.install | |
parent | 7c4c17e34fbf3da4024656a99643b4062719513b (diff) | |
download | linhes_pkgbuild-52e7c7e6d99e3d515936d9c51f9fbe65179e5153.zip linhes_pkgbuild-52e7c7e6d99e3d515936d9c51f9fbe65179e5153.tar.gz linhes_pkgbuild-52e7c7e6d99e3d515936d9c51f9fbe65179e5153.tar.bz2 |
Quick replacment shutdown command for runit.
it accepts the -t -r -h commands like init shutdown and errors out for all others.
Diffstat (limited to 'abs/core-testing/runit/runit.install')
-rwxr-xr-x | abs/core-testing/runit/runit.install | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/abs/core-testing/runit/runit.install b/abs/core-testing/runit/runit.install index 977841b..b6fcb07 100755 --- a/abs/core-testing/runit/runit.install +++ b/abs/core-testing/runit/runit.install @@ -4,9 +4,10 @@ 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 -fi } @@ -14,9 +15,14 @@ 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 -fi } @@ -28,6 +34,7 @@ post_install () { ln -s /sbin/poweroff.script /sbin/poweroff ln -s /sbin/halt-init /sbin/reboot.init ln -s /sbin/halt-init /sbin/poweroff.init + ln -s /sbin/shutdown.script /sbin/shutdown } @@ -41,6 +48,7 @@ post_upgrade(){ ln -s /sbin/poweroff.script /sbin/poweroff ln -s /sbin/halt-init /sbin/reboot.init ln -s /sbin/halt-init /sbin/poweroff.init + ln -s /sbin/shutdown.script /sbin/shutdown } |