summaryrefslogtreecommitdiff
path: root/package/network/services/dnsmasq/files/dnsmasqsec.hotplug
blob: 5c69314bd97590b7477ea32d2fbe8022ca307424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

TIMEVALIDFILE="/var/state/dnsmasqsec"

[ "$ACTION" = stratum ] || exit 0

[ -f "$TIMEVALIDFILE" ] || {
	echo "ntpd says time is valid" >$TIMEVALIDFILE
	/etc/init.d/dnsmasq enabled && {
		pid=$(pidof dnsmasq)
		[ "$(readlink /proc/$pid/exe)" = "/usr/sbin/dnsmasq" ] && kill -SIGHUP $pid \
		|| /etc/init.d/dnsmasq restart
	}
}