浏览代码

Update pihole-install.sh

distribution agnostic
fixes https://github.com/tteck/Proxmox/issues/1505
tteckster 2 年之前
父节点
当前提交
0273034e28
共有 1 个文件被更改,包括 2 次插入5 次删除
  1. 2 5
      install/pihole-install.sh

+ 2 - 5
install/pihole-install.sh

@@ -22,9 +22,6 @@ $STD apt-get install -y ntp
 msg_ok "Installed Dependencies"
 
 msg_info "Installing Pi-hole"
-systemctl stop systemd-resolved
-echo "DNSStubListener=no" >>/etc/systemd/resolved.conf
-ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf
 mkdir -p /etc/pihole/
 cat <<EOF >/etc/pihole/setupVars.conf
 PIHOLE_INTERFACE=eth0
@@ -41,8 +38,8 @@ DNSMASQ_LISTENING=local
 WEBPASSWORD=$(openssl rand -base64 48)
 BLOCKING_ENABLED=true
 EOF
-
-$STD bash <(curl -fsSL https://install.pi-hole.net) /dev/stdin --unattended
+# View script https://install.pi-hole.net
+$STD bash <(curl -fsSL https://install.pi-hole.net) --unattended
 msg_ok "Installed Pi-hole"
 
 motd_ssh