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.

20 lines
669 B

  1. #!/bin/sh
  2. ##############################################################################
  3. #
  4. # Copyright (C) 2016 Eric Luehrsen
  5. #
  6. ##############################################################################
  7. #
  8. # "Restart" Unbound on hotplug interface up:
  9. # - Clean rebind of unbound to new interfaces
  10. # - Some of Unbound conf options to not reload run time
  11. # - Unbound can grow a bit so this will shrink it back
  12. #
  13. ##############################################################################
  14. if [ "$ACTION" = ifup ] && /etc/init.d/unbound enabled ; then
  15. /etc/init.d/unbound restart
  16. fi
  17. ##############################################################################