This shows you the differences between two versions of the page.
— |
ping_test_script_for_cron [2009/08/27 20:01] (current) k2patel created |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Simple Ping test script ====== | ||
+ | This is lame script for just to serve quick purpose. | ||
+ | |||
+ | <code bash | pingtest.sh> | ||
+ | #!/bin/bash | ||
+ | /sbin/ping -c 3 yahoo.com | ||
+ | if [ $? -eq 0 ] | ||
+ | then | ||
+ | echo "Pinging" | ||
+ | else | ||
+ | echo "Not Pinging - Restarting Network" | ||
+ | /etc/init.d/network restart | ||
+ | fi | ||
+ | </code> |