diff --git a/net/unbound/files/unbound.ntpd b/net/unbound/files/unbound.ntpd new file mode 100755 index 000000000..9244284d8 --- /dev/null +++ b/net/unbound/files/unbound.ntpd @@ -0,0 +1,28 @@ +#!/bin/sh +############################################################################## +# +# Copyright (C) 2016 Eric Luehrsen +# +############################################################################## +# +# "Restart" Unbound on hotplug NTP ready: +# - Only do this the first time when no file exists +# - Some of Unbound conf options to not reload run time +# - Change the enable flag for DNSSEC date-time checking +# +############################################################################## + +# Common file location definitions +. /usr/lib/unbound/unbound.sh + +############################################################################## + +if [ "$ACTION" = stratum -a ! -f "$UNBOUND_TIMEFILE" ] \ + && /etc/init.d/dnsmasq enabled ; then + # + echo "ntpd: $( date )" > $UNBOUND_TIMEFILE + /etc/init.d/unbound restart +fi + +############################################################################## +