Files
webgui/sbin/powerdown
2023-10-03 10:21:19 +02:00

13 lines
177 B
Bash
Executable File

#!/bin/bash
# run & log functions
. /etc/rc.d/rc.runlog
log "/usr/local/sbin/powerdown has been deprecated"
if [[ "$1" == "-r" ]]; then
/sbin/reboot
else
/sbin/init 0
fi