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.

29 lines
1.0 KiB

  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. # while useful (sh)ellcheck is pedantic and noisy
  15. # shellcheck disable=1091,2002,2004,2034,2039,2086,2094,2140,2154,2155
  16. . /usr/lib/unbound/defaults.sh
  17. ##############################################################################
  18. if [ ! -f "$UB_TIME_FILE" ] && [ "$ACTION" = stratum ] ; then
  19. date -Is > $UB_TIME_FILE
  20. /etc/init.d/unbound enabled && /etc/init.d/unbound restart
  21. # Yes, hard RESTART. We need to be absolutely sure to enable DNSSEC.
  22. fi
  23. ##############################################################################