1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-15 01:31:05 +02:00

14 lines
136 B
Plaintext
Raw Normal View History

#!/bin/sh
logger -t button -p daemon.info "$BUTTON/$ACTION"
case "$BUTTON/$ACTION" in
reset/released)
reboot -f
;;
esac
exit 0