Use `poweroff` instead of `halt`

Signed-off-by: DL6ER <dl6er@dl6er.de>
pull/1572/head
DL6ER 7 years ago
parent 0d037e96fb
commit 279e809aaf
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

@ -217,8 +217,8 @@ SetExcludeClients() {
change_setting "API_EXCLUDE_CLIENTS" "${args[2]}"
}
Halt(){
nohup bash -c "sleep 5; halt" &> /dev/null </dev/null &
Poweroff(){
nohup bash -c "sleep 5; poweroff" &> /dev/null </dev/null &
}
Reboot() {
@ -484,7 +484,7 @@ main() {
"setdns" ) SetDNSServers;;
"setexcludedomains" ) SetExcludeDomains;;
"setexcludeclients" ) SetExcludeClients;;
"halt" ) Halt;;
"poweroff" ) Poweroff;;
"reboot" ) Reboot;;
"restartdns" ) RestartDNS;;
"setquerylog" ) SetQueryLogOptions;;

Loading…
Cancel
Save