Use host FQDN in install script (fixes #1003)

This commit is contained in:
mdecimus 2024-12-15 19:00:53 +01:00
parent 07449a3622
commit eada3ab687

View file

@ -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