Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > d401abf7cc7d22688420a4c63e2ab718 > files > 1

chrony-1.26-3.20110831gitb088b7.fc15.i686.rpm

#!/bin/sh

export LC_ALL=C

if [ "$2" = "up" ]; then
	/sbin/ip route list dev "$1" | grep -q '^default' &&
		/usr/libexec/chrony-helper command online > /dev/null 2>&1
fi

if [ "$2" = "down" ]; then
	/sbin/ip route list | grep -q '^default' ||
		/usr/libexec/chrony-helper command offline > /dev/null 2>&1
fi

exit 0