mirror of
https://github.com/unraid/webgui.git
synced 2026-01-07 01:59:52 -06:00
8 lines
133 B
Bash
Executable File
8 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
logger "/usr/local/sbin/powerdown has been deprecated"
|
|
if [[ "$1" == "-r" ]]; then
|
|
/sbin/reboot
|
|
else
|
|
/sbin/init 0
|
|
fi
|