2024-05-19 19:04:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ "$1" == "poweroff" ]; then
|
2024-05-30 22:42:12 +00:00
|
|
|
poweroff --halt
|
2024-05-19 19:04:59 +00:00
|
|
|
elif [ "$1" == "reboot" ]; then
|
|
|
|
reboot
|
|
|
|
else
|
|
|
|
echo "Unknown ubnt-systool cmd: $@" >> /tmp/ubnt-systool-unknown.log
|
|
|
|
fi
|