From f99929f7961918eba8afa8de3424749c8fa9bfec Mon Sep 17 00:00:00 2001 From: Tommy Date: Wed, 29 May 2024 18:00:53 -0700 Subject: [PATCH] Fix unbound config URL Signed-off-by: Tommy --- Fedora-Server-40.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fedora-Server-40.sh b/Fedora-Server-40.sh index 25897c4..d6b538b 100644 --- a/Fedora-Server-40.sh +++ b/Fedora-Server-40.sh @@ -112,7 +112,7 @@ fi # Setup unbound sudo dnf install unbound -y -unpriv curl https://github.com/TommyTran732/Fedora-CoreOS-Ignition/blob/main/etc/unbound/unbound.conf | sudo tee /etc/unbound/unbound.conf +unpriv curl https://raw.githubusercontent.com/TommyTran732/Fedora-CoreOS-Ignition/main/etc/unbound/unbound.conf | sudo tee /etc/unbound/unbound.conf sudo mkdir /etc/systemd/system/unbound.service.d unpriv curl https://raw.githubusercontent.com/TommyTran732/Fedora-CoreOS-Ignition/main/etc/systemd/system/unbound.service.d/override.conf | sudo tee /etc/systemd/system/unbound.service.d/override.conf sudo systemctl enable --now unbound