UNVR-NAS/overlay/filesystem/usr/bin/ubnt-systool

10 lines
182 B
Text
Raw Normal View History

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