18 lines
238 B
Text
18 lines
238 B
Text
#!${PREFIX}/sbin/runscript
|
|
|
|
description="Shutdown or reboot the system"
|
|
|
|
depend()
|
|
{
|
|
keyword noprefix
|
|
after *
|
|
}
|
|
|
|
start()
|
|
{
|
|
if [ "${RC_RUNLEVEL}" = "shutdown" ]; then
|
|
yesno "$RC_REBOOT" && reboot -d -f -i
|
|
poweroff -d -f -h -i
|
|
fi
|
|
|
|
}
|