From 3d811427ee6e03e1ed345b3e9f77bbc71342871c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Sun, 23 Apr 2017 11:58:17 +0200 Subject: [PATCH] better explanation about changing servername in final message --- contrib/packager.io/functions | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/contrib/packager.io/functions b/contrib/packager.io/functions index 56d34243b..981b1dcb2 100644 --- a/contrib/packager.io/functions +++ b/contrib/packager.io/functions @@ -235,12 +235,13 @@ function update_or_install () { function final_message () { echo -e "####################################################################################" - echo -e "\nAdd your FQDN to servername directive in ${WEBSERVER_CONF}" - echo -e "and restart your webserver if you're not testing locally" - echo -e "or open http://localhost/ in your browser to start using Zammad.\n" + echo -e "\nAdd your fully qualified domain name or public IP to servername directive of" + echo -e "${WEBSERVER}, if this installation is done on a remote server. You have to change:" + echo -e "${WEBSERVER_CONF} and restart ${WEBSERVER_CMD} process." + echo -e "Otherwise just open http://localhost/ in your browser to start using Zammad.\n" if [ "${OS}" == "REDHAT" ]; then echo -e "\n Remember to enable selinux and firewall rules!\n" - echo -e "Use the follwing commands:" + echo -e "Use the following commands:" echo -e " setsebool httpd_can_network_connect on -P" echo -e " firewall-cmd --zone=public --add-service=http --permanent" echo -e " firewall-cmd --zone=public --add-service=https --permanent"