- Joined
- Feb 27, 2003
- Messages
- 8,138
It was found that some Debian 10 installs were using /etc/init.d/bind9 for startup, while DA was assuming the systemd box would be in the /etc/systemd/system/named.service. There were checks looking for bind9.services, but they failed, as the boot script ended up in /etc/init.d/bind9.
It was reported that the issue only showed itself when the box was restarted, as DA have have installed the missing /etc/systemd/system/named.service file.
The setup.sh has been updated to link /etc/init.d/named -> bind9, rather than needing to use the named_service_override option, for the cases where /etc/init.d/bind9 exists, and the bind9.service does not exist elsewhere.
It can be confirmed with "systemctl bind9 status" to see which boot script it being used.. where we'd be looking for the /etc/init.d/bind9 path.
If you do see this,the link can be created
but again, only if you do have this /etc/init.d/bind9 script present, and it's showning up as the script used in the systemctl bind9 status call. Once the link is created, the /etc/systemd/system/named.service could be removed.
If you are not having any named reload issues, there should be no need to make any changes.
John
It was reported that the issue only showed itself when the box was restarted, as DA have have installed the missing /etc/systemd/system/named.service file.
The setup.sh has been updated to link /etc/init.d/named -> bind9, rather than needing to use the named_service_override option, for the cases where /etc/init.d/bind9 exists, and the bind9.service does not exist elsewhere.
It can be confirmed with "systemctl bind9 status" to see which boot script it being used.. where we'd be looking for the /etc/init.d/bind9 path.
If you do see this,the link can be created
Code:
ln -s bind9 /etc/init.d/bind9
If you are not having any named reload issues, there should be no need to make any changes.
John