adding config support for password via shared file

This commit is contained in:
anthraxx 2015-02-06 23:34:57 +01:00
commit 12be452e56
5 changed files with 19 additions and 2 deletions

3
lock
View file

@ -1,4 +1,5 @@
#!/bin/sh
source shared
echo "Initializing Space Systems..."
echo "22" > /sys/class/gpio/unexport
@ -9,7 +10,7 @@ echo "out" > /sys/class/gpio/gpio22/direction
sleep 0.5
echo "Open Communication Channel..."
# Silent, Output to /dev/null, Timeout after 5s and retry 12 times, each doubling the waitingtime until ten minutes.
curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 "hamburg.ccc.de/dooris/status.php?apikey=sesamaenderdich&action=close" &
curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 "hamburg.ccc.de/dooris/status.php?apikey=${password}&action=close" &
echo "Locking Space..."
echo "1" > /sys/class/gpio/gpio22/value
sleep 0.3