mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 06:59:56 -06:00
13 lines
177 B
Bash
Executable File
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
|