From a369a432eb3202c813cc3d5b3748521601cb3176 Mon Sep 17 00:00:00 2001 From: Matthew Saunders Brown Date: Wed, 14 Apr 2021 11:21:15 -0700 Subject: [PATCH] installer fixes --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index eae9d72..a495759 100755 --- a/install.sh +++ b/install.sh @@ -25,7 +25,7 @@ cp etc/letsencrypt/renewal-hooks/post/sync-certs-to-etc-ssl.sh /etc/letsencrypt/ chmod 750 /etc/letsencrypt/renewal-hooks/post/sync-certs-to-etc-ssl.sh chown root:root /etc/letsencrypt/renewal-hooks/post/sync-certs-to-etc-ssl.sh -domain=`hostaname -d` +domain=`hostname -d` if [ -n "$domain" ]; then echo "email = hostmaster@$domain" >> /etc/letsencrypt/cli.ini echo "Lets' Encrypt email set to hostmaster@$domain" @@ -34,8 +34,8 @@ else fi cp etc/apache2/conf-available/certbot.conf /etc/apache2/conf-available/certbot.conf -a2enmod proxy -a2enconf certbot +a2enmod --quiet proxy +a2enconf --quiet certbot systemctl restart apache2 chmod 755 bin/*