From 6a6cad8d125d51dfa09d8bdbc27eaaab9a1dd5b9 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Fri, 6 Sep 2024 12:55:41 +0200 Subject: [PATCH] Update INSTALL.sh --- version/0.2.8/INSTALL.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/version/0.2.8/INSTALL.sh b/version/0.2.8/INSTALL.sh index 51bd1b4d..300908a3 100644 --- a/version/0.2.8/INSTALL.sh +++ b/version/0.2.8/INSTALL.sh @@ -1438,6 +1438,9 @@ setup_bind(){ # only on ubuntu systemd-resolved is installed if [ -f /etc/os-release ] && grep -q "Ubuntu" /etc/os-release; then echo " DNSStubListener=no" >> /etc/systemd/resolved.conf && systemctl restart systemd-resolved + # debian12 also! + elif [ -f /etc/os-release ] && grep -q "Debian" /etc/os-release; then + echo " DNSStubListener=no" >> /etc/systemd/resolved.conf && systemctl restart systemd-resolved fi echo "Generating rndc.key for DNS zone management."