Skip to content

Instantly share code, notes, and snippets.

@pieterbeulque
Created March 25, 2014 14:43
Show Gist options
  • Save pieterbeulque/9763252 to your computer and use it in GitHub Desktop.
Save pieterbeulque/9763252 to your computer and use it in GitHub Desktop.
Reboot on network drop
ping -c4 192.168.1.1 > /dev/null
if [$? != 0]
then
sudo /sbin/shutdown -r now
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment