diff options
author | James Meyer <james.meyer@operamail.com> | 2011-08-20 15:21:59 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2011-08-20 15:21:59 (GMT) |
commit | d66c33d9e436aa96c477991f89ebd85407bae0cb (patch) | |
tree | c53cafec2d4e5505c473616413209de0d38dce2c /abs/core/runit/halt.script | |
parent | 94b35c36de73945918cd2d09f23735a0c4e84fe4 (diff) | |
download | linhes_pkgbuild-d66c33d9e436aa96c477991f89ebd85407bae0cb.zip linhes_pkgbuild-d66c33d9e436aa96c477991f89ebd85407bae0cb.tar.gz linhes_pkgbuild-d66c33d9e436aa96c477991f89ebd85407bae0cb.tar.bz2 |
runit & sysvinit : remove power related scripts and move them to a common
Diffstat (limited to 'abs/core/runit/halt.script')
-rwxr-xr-x | abs/core/runit/halt.script | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/abs/core/runit/halt.script b/abs/core/runit/halt.script deleted file mode 100755 index b49ed7c..0000000 --- a/abs/core/runit/halt.script +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -. /etc/profile -INIT=`ps -p 1 -o comm=` -if [ x$1 = x-w ] -then - /sbin/halt-init -w - exit 0 -fi -chvt 1 -if [ x$INIT = xrunit ] -then - /sbin/halt-runit $@ -else - /sbin/halt-init $@ -fi - |