7 lines
109 B
Text
7 lines
109 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if [ "$1" == "reboot" ]; then
|
||
|
/sbin/reboot
|
||
|
elif [ "$1" == "poweroff" ]; then
|
||
|
/sbin/poweroff
|
||
|
fi
|