diff --git a/WiFi_Check b/WiFi_Check index 9de6f91..0df6137 100644 --- a/WiFi_Check +++ b/WiFi_Check @@ -39,7 +39,7 @@ wlan='wlan0' ################################################################## echo echo "Starting WiFi check for $wlan" -date +/bin/date echo # Check to see if there is a lock file @@ -62,19 +62,19 @@ echo $$ > $lockfile # We can perform check echo "Performing Network check for $wlan" -if ifconfig $wlan | grep -q "inet addr:" ; then +if /sbin/ifconfig $wlan | grep -q "inet addr:" ; then echo "Network is Okay" else echo "Network connection down! Attempting reconnection." - ifdown $wlan + /sbin/ifdown $wlan sleep 5 - ifup --force $wlan - ifconfig $wlan | grep "inet addr" + /sbin/ifup --force $wlan + /sbin/ifconfig $wlan | grep "inet addr" fi echo echo "Current Setting:" -ifconfig $wlan | grep "inet addr:" +/sbin/ifconfig $wlan | grep "inet addr:" echo # Check is complete, Remove Lock file and exit