Skip to content

Instantly share code, notes, and snippets.

@pstray
Created June 14, 2014 18:34
Show Gist options
  • Save pstray/f991bbb942992d2c4af7 to your computer and use it in GitHub Desktop.
Save pstray/f991bbb942992d2c4af7 to your computer and use it in GitHub Desktop.
#! /bin/sh
PATH=/usr/sbin:/usr/bin:/sbin:/bin
gw=$(route -A inet -n|awk '/UG/{ print $2 }')
ok=
if [ -n "$gw" ]; then
ping -c 1 $gw >& /dev/null && ok=1
fi
if [ -z "$ok" ]; then
date +"%F %T: renewing lease due to missing connectivity" >> /mnt/SD_FIT/ping_or_renew.log
dhcpc-renew
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment