Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 34bfb781a6c8b4ceb425f3d3fc3d4d9a > files > 6

chrony-1.25-1.fc14.src.rpm

#!/bin/sh

export LC_ALL=C

if [ "$2" = "up" ]; then
	/sbin/ip route list dev "$1" | grep -q '^default' &&
		/etc/init.d/chronyd online
fi

if [ "$2" = "down" ]; then
	/sbin/ip route list | grep -q '^default' ||
		/etc/init.d/chronyd offline
fi

exit 0