improve root email
authorIan Kelling <iank@fsf.org>
Sun, 11 Oct 2020 12:53:18 +0000 (08:53 -0400)
committerIan Kelling <iank@fsf.org>
Sun, 11 Oct 2020 12:53:18 +0000 (08:53 -0400)
web-conf

index e682259a053bebbdc5fe3a59a8f14279a3b1a36b..db509d7b3fc9ac1d654c01f7aea28828aaaa182e 100755 (executable)
--- a/web-conf
+++ b/web-conf
@@ -34,8 +34,8 @@ repo distro-setup, and log-quiet.
 
 EXTRA_SETTINGS_FILE can be - for stdin
 -e EMAIL          Contact address for let's encrypt. Default is
-                  root@\$(hostname -A|awk '{print $1}')
-                  which is root@$(hostname -A|awk '{print $1}') on this host.
+                  root@\$(hostname --fqdn')
+                  which is root@$(hostname --fqdn) on this host.
 -f [ADDR:]PORT    Enable proxy to [ADDR:]PORT. ADDR default is 127.0.0.1
 -i                Insecure, no ssl.
 -p PORT           Main port to listen on, default 443. 80 implies -i.
@@ -96,7 +96,7 @@ if [[ $proxy ]]; then
 fi
 
 if [[ ! $email ]]; then
-    email=root@$(hostname -A|awk '{print $1}')
+    email=root@$(hostname --fqdn)
 fi