From 3bc6d2f6ad8251584883f3979bfdb5d008985b25 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 22 Dec 2023 18:16:04 +1100 Subject: [PATCH] fix: Make cert script executable --- install.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 3a6cc9a..f99ae8a 100755 --- a/install.sh +++ b/install.sh @@ -6,15 +6,13 @@ if [ "$EUID" -ne 0 ] exit fi -chmod +x cert.sh +chmod +x cert.sh cert.py sudo apt-get install -y dnsdist # Install certbot sudo apt install snapd sudo snap install --classic certbot sudo ln -s /snap/bin/certbot /usr/bin/certbot - sudo certbot certonly --manual --manual-auth-hook ./cert.py --preferred-challenges dns -d hnsdoh.com --deploy-hook ./cert.sh - sudo cp ./resolved.conf /etc/systemd/resolved.conf sudo systemctl restart systemd-resolved