From e1ad7f9c5a5b22e60be15aa1dde4d8d8f7e4959e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Fri, 4 Nov 2016 11:13:11 +0100 Subject: [PATCH] postinstall.sh changes reflect apache2 dependency in debian/ubuntu when showing zammad url --- contrib/packager.io/postinstall.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/contrib/packager.io/postinstall.sh b/contrib/packager.io/postinstall.sh index ee9542db4..0e1691a32 100755 --- a/contrib/packager.io/postinstall.sh +++ b/contrib/packager.io/postinstall.sh @@ -134,7 +134,10 @@ if [ -n "$(which nginx)" ]; then echo "# Restarting Nginx" ${INIT_CMD} restart nginx + + echo -e "\nAdd your FQDN to servername directive in ${NGINX_CONF} and restart nginx if you're not testing localy" + echo -e "or open http://localhost in your browser to start using Zammad.\n" +else + echo -e "\nOpen http://localhost:3000 in your browser to start using Zammad.\n" fi -echo -e "\nAdd your FQDN to servername directive in ${NGINX_CONF} and restart nginx if you're not testing localy" -echo -e "or open http://localhost in your browser to start using Zammad.\n"