Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 614658
Collapse All | Expand All

(-)a/tools/linux/ck-system-restart (-1 / +4 lines)
Lines 1-7 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
2
3
#Try for common tools
3
#Try for common tools
4
if [ -x "/sbin/shutdown" ] ; then
4
if [ ! -e "/dev/initctl" ] && [ -x "/sbin/runit-init" ] ; then
5
	/sbin/runit-init 6
6
	exit $?
7
elif [ -x "/sbin/shutdown" ] ; then
5
	/sbin/shutdown -r now
8
	/sbin/shutdown -r now
6
	exit $?
9
	exit $?
7
elif [ -x "/usr/sbin/shutdown" ] ; then
10
elif [ -x "/usr/sbin/shutdown" ] ; then
(-)a/tools/linux/ck-system-stop (-1 / +4 lines)
Lines 1-7 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
2
3
#Try for common tools
3
#Try for common tools
4
if [ -x "/sbin/shutdown" ] ; then
4
if [ ! -e "/dev/initctl" ] && [ -x "/sbin/runit-init" ] ; then
5
	/sbin/runit-init 0
6
	exit $?
7
elif [ -x "/sbin/shutdown" ] ; then
5
	/sbin/shutdown -h now
8
	/sbin/shutdown -h now
6
	exit $?
9
	exit $?
7
elif [ -x "/usr/sbin/shutdown" ] ; then
10
elif [ -x "/usr/sbin/shutdown" ] ; then

Return to bug 614658