UNVR-NAS/overlay/filesystem/usr/bin/ubnt-systool
Chris Blake 85a5bd66e0 feat: initial upload
Initial public release
2024-05-19 14:04:59 -05:00

9 lines
182 B
Bash
Executable file

#!/bin/bash
if [ "$1" == "poweroff" ]; then
poweroff
elif [ "$1" == "reboot" ]; then
reboot
else
echo "Unknown ubnt-systool cmd: $@" >> /tmp/ubnt-systool-unknown.log
fi