Added network identity to post-data when sats-update
This commit is contained in:
parent
6ea77ddd9f
commit
ca25a414fc
|
@ -10,7 +10,11 @@
|
|||
---------------------------------------------------------*/
|
||||
$data = [
|
||||
'default' => [],
|
||||
'feature' => []
|
||||
'feature' => [],
|
||||
'identity' => [
|
||||
'ap' => preg_replace('/\s+/', '', file_get_contents(TMP_DIR.'/net.ap')),
|
||||
'ip' => preg_replace('/\s+/', '', file_get_contents(TMP_DIR.'/net.ip'))
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
|
|
9
update
9
update
|
@ -10,6 +10,15 @@ 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 | sudo -u sats tee $TMP_DIR/net.ap;
|
||||
echo $IP_AD | sudo -u sats tee $TMP_DIR/net.ip;
|
||||
|
||||
# (2) Send data + fetch configuration
|
||||
test "$($SOURCE_DIR/lib/api/update)" = "127" && slog "update failed" - "update" && exit 127;
|
||||
|
||||
|
|
Loading…
Reference in New Issue