diff --git a/ppp_installer/reconnect_cellulariot_app b/ppp_installer/reconnect_cellulariot_app index c23ba39..5633ecc 100644 --- a/ppp_installer/reconnect_cellulariot_app +++ b/ppp_installer/reconnect_cellulariot_app @@ -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