Restored previous `update` script

This commit is contained in:
xdrm-brackets 2017-07-21 17:16:37 +02:00
parent 6bad0902f2
commit 0b41662a12
1 changed files with 0 additions and 9 deletions

9
update
View File

@ -10,15 +10,6 @@ if [ ! -e /target/sync ]; then
slog "not synchronized yet, aborting" - "update" && exit 127;
fi;
# (2) Get wireless IFACE #
IFACE=`sudo ifconfig | grep -o -P "^w\w+"`;
# (3) Get network identity #
AP_ID=`sudo iwconfig $IFACE | grep -o -P "ESSID:\"SATS_.+\"" | sed 's/ESSID:"SATS_//' | sed 's/"$//'`;
IP_AD=`sudo ifconfig $IFACE | grep -o -P "inet addr:\d+\.\d+\.\d+\.\d+" | sed 's/inet addr://'`
echo $AP_ID > $TMP_DIR/net.ap;
echo $IP_AD > $TMP_DIR/net.ip;
# (2) Send data + fetch configuration
test "$($SOURCE_DIR/lib/api/update)" = "127" && slog "update failed" - "update" && exit 127;