diff options
Diffstat (limited to 'bind9-resolvconf.service')
-rw-r--r-- | bind9-resolvconf.service | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bind9-resolvconf.service b/bind9-resolvconf.service new file mode 100644 index 00000000..3426c1ff --- /dev/null +++ b/bind9-resolvconf.service @@ -0,0 +1,13 @@ +[Unit] +Description=local BIND via resolvconf +Documentation=man:named(8) man:resolvconf(8) +Requires=bind9.service +After=bind9.service +ConditionFileIsExecutable=/sbin/resolvconf + +[Service] +ExecStart=/bin/sh -c 'echo nameserver 127.0.0.1 | /sbin/resolvconf -a lo.named' +ExecStop=/sbin/resolvconf -d lo.named + +[Install] +WantedBy=bind9.service |