Initial Commit
This commit is contained in:
Executable
+18
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
echo "$(date): Connect to Internet..."
|
||||
ifup --force gprs
|
||||
sleep 1
|
||||
|
||||
x=0
|
||||
# Wait until connection is established
|
||||
while ! ping -c 1 -W 1 8.8.8.8 &>/dev/null ; do
|
||||
echo "$(date): wait for internet connection to come up"
|
||||
sleep 1
|
||||
if [ $x -gt 60 ]; then
|
||||
# Time out here
|
||||
echo "$(date): Could not connect to internet (timeout)..."
|
||||
exit 1
|
||||
fi
|
||||
x=$((x+1))
|
||||
done
|
||||
echo "$(date): Connected to Internet...- IP: $(/home/pi/root-bin/get_internet_ip)"
|
||||
Reference in New Issue
Block a user