nohup all the things so curl doesn't die on SIGHUP

This commit is contained in:
anthraxx 2015-08-26 21:44:00 +02:00
parent 2b23591d8f
commit c1e0939c1f
2 changed files with 2 additions and 2 deletions

2
lock
View file

@ -10,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 "https://hamburg.ccc.de/dooris/status.php?apikey=${password}&action=close" &
nohup curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 "https://hamburg.ccc.de/dooris/status.php?apikey=${password}&action=close" &
echo "Locking Space..."
echo "1" > /sys/class/gpio/gpio22/value
sleep 0.3

2
unlock
View file

@ -9,7 +9,7 @@ echo "Securing Communication to Space Systems..."
echo "out" > /sys/class/gpio/gpio27/direction
sleep 0.5
echo "Open Communication Channel..."
curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 "https://hamburg.ccc.de/dooris/status.php?apikey=${password}&action=open" &
nohup curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 "https://hamburg.ccc.de/dooris/status.php?apikey=${password}&action=open" &
echo "Unlocking Space..."
echo "1" > /sys/class/gpio/gpio27/value
sleep 0.3