Unbound: Add hotplug/iface script to request restart
authorEric Luehrsen <ericluehrsen@hotmail.com>
Thu, 20 Oct 2016 04:14:16 +0000 (00:14 -0400)
committerEric Luehrsen <ericluehrsen@hotmail.com>
Sun, 30 Oct 2016 04:22:53 +0000 (00:22 -0400)
-Rebind to new interfaces cleanly
-Detach from old interfaces cleanly
-Some conf options do not reload dynamically
-Unbound grows some and this will shrink it

Signed-off-by: Eric Luehrsen <ericluehrsen@hotmail.com>
net/unbound/files/unbound.iface [new file with mode: 0755]

diff --git a/net/unbound/files/unbound.iface b/net/unbound/files/unbound.iface
new file mode 100755 (executable)
index 0000000..172bcae
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+##############################################################################
+#
+# Copyright (C) 2016 Eric Luehrsen
+#
+##############################################################################
+#
+# "Restart" Unbound on hotplug interface up:
+# - Clean rebind of unbound to new interfaces
+# - Some of Unbound conf options to not reload run time
+# - Unbound can grow a bit so this will shrink it back
+#
+##############################################################################
+
+if [ "$ACTION" = ifup ] && /etc/init.d/unbound enabled ; then
+  /etc/init.d/unbound restart
+fi
+
+##############################################################################
+