feat: initial upload

Initial public release
This commit is contained in:
Chris Blake 2024-05-19 14:04:59 -05:00
commit 85a5bd66e0
30 changed files with 943 additions and 0 deletions

View file

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