mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
17 lines
409 B
Bash
Executable file
17 lines
409 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This script is likely not used. Just exit with
|
|
# an error and see if someone screems... If not,
|
|
# we can delete this file.
|
|
exit 1
|
|
|
|
|
|
[ -f /var/dectisregistering ] || {
|
|
touch /var/dectisregistering 2>/dev/null
|
|
/usr/bin/dectmngr -r
|
|
ubus call led.dect set '{"state" : "notice"}'
|
|
sleep 20
|
|
rm /var/dectisregistering 2>/dev/null
|
|
/usr/bin/dectmngr -s
|
|
ubus call led.dect set '{"state" : "ok"}'
|
|
}
|