From eada3ab6878f7d6a40692ef6ca41d3baaff827aa Mon Sep 17 00:00:00 2001 From: mdecimus Date: Sun, 15 Dec 2024 19:00:53 +0100 Subject: [PATCH] Use host FQDN in install script (fixes #1003) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f4a78fb0..d1c1b7c2 100644 --- a/install.sh +++ b/install.sh @@ -127,7 +127,7 @@ main() { fi # Installation complete - local _host=$(hostname) + local _host=$(hostname -f) say "🎉 Installation complete! Continue the setup at http://$_host:8080/login" return 0