From 1f4fb7cf0f46043e69d96d751525c23cebe86fec Mon Sep 17 00:00:00 2001 From: Tom Saul Date: Wed, 31 Jul 2019 14:50:26 -0700 Subject: [PATCH] Reduce logging for 'all good' check --- ppp_installer/reconnect_cellulariot | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ppp_installer/reconnect_cellulariot b/ppp_installer/reconnect_cellulariot index a52bf53..35cf79c 100644 --- a/ppp_installer/reconnect_cellulariot +++ b/ppp_installer/reconnect_cellulariot @@ -19,11 +19,9 @@ while true; do gpio -g write 24 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