16 lines
370 B
SYSTEMD
16 lines
370 B
SYSTEMD
[Unit]
|
|
Description=local BIND via resolvconf
|
|
Documentation=man:named(8) man:resolvconf(8)
|
|
PartOf=bind9.service
|
|
After=bind9.service
|
|
ConditionFileIsExecutable=/sbin/resolvconf
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
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
|