Merge pull request #8 from tomsaul/patch-3

Reduce logging for 'all good' check
This commit is contained in:
saeedjohar 2019-08-28 16:45:22 +03:00 committed by GitHub
commit 329376a655
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,11 +19,9 @@ while true; do
gpio -g write 11 0
sleep 2
else
ping -I ppp0 -c 1 8.8.8.8 -s 0
ping -q -I ppp0 -c 1 8.8.8.8 -s 0 >/dev/null
if [ $? -eq 0 ]; then
echo "Connection up, reconnect not required..."
else
if [ $? -ne 0 ]; then
echo "Connection down, reconnecting..."
sudo pon
fi