You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
904 B

  1. #!/bin/sh
  2. ##############################################################################
  3. #
  4. # Copyright (C) 2016 Eric Luehrsen
  5. #
  6. ##############################################################################
  7. #
  8. # "Restart" Unbound on hotplug NTP ready:
  9. # - Only do this the first time when no file exists
  10. # - Some of Unbound conf options to not reload run time
  11. # - Change the enable flag for DNSSEC date-time checking
  12. #
  13. ##############################################################################
  14. # Common file location definitions
  15. . /usr/lib/unbound/unbound.sh
  16. ##############################################################################
  17. if [ "$ACTION" = stratum -a ! -f "$UNBOUND_TIMEFILE" ] \
  18. && /etc/init.d/unbound enabled ; then
  19. #
  20. echo "ntpd: $( date )" > $UNBOUND_TIMEFILE
  21. /etc/init.d/unbound restart
  22. fi
  23. ##############################################################################