diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:59:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:59:49 +0000 |
commit | 0e764bd6a393ec1a7e876e4cafbbf0665e78849c (patch) | |
tree | bd15cfb16df2d659532769e8bdfd76a16c7f7ad6 /debian/extras/if-reconfig.d | |
parent | Adding upstream version 1:9.18.19. (diff) | |
download | bind9-0e764bd6a393ec1a7e876e4cafbbf0665e78849c.tar.xz bind9-0e764bd6a393ec1a7e876e4cafbbf0665e78849c.zip |
Adding debian version 1:9.18.19-1~deb12u1.debian/1%9.18.19-1_deb12u1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/extras/if-reconfig.d')
-rwxr-xr-x | debian/extras/if-reconfig.d/bind9 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/extras/if-reconfig.d/bind9 b/debian/extras/if-reconfig.d/bind9 new file mode 100755 index 0000000..d06965f --- /dev/null +++ b/debian/extras/if-reconfig.d/bind9 @@ -0,0 +1,15 @@ +#!/bin/sh -e +# Called when an interfaces comes up or down +# Written by LaMont Jones <lamont@debian.org> + +# kick named as needed + +# If /usr isn't mounted yet, silently bail. +if [ ! -d /usr/sbin ]; then + exit 0 +fi + +# if named is running, reconfig it. +rndc reconfig >/dev/null 2>&1 & + +exit 0 |