From 6b405ce87bc5c8ccb2c943d95946f93d3a902207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Sun, 23 Apr 2017 12:37:54 +0200 Subject: [PATCH] added suse firewall info to final message --- contrib/packager.io/functions | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/packager.io/functions b/contrib/packager.io/functions index 981b1dcb2..48d1b3378 100644 --- a/contrib/packager.io/functions +++ b/contrib/packager.io/functions @@ -246,6 +246,9 @@ function final_message () { echo -e " firewall-cmd --zone=public --add-service=http --permanent" echo -e " firewall-cmd --zone=public --add-service=https --permanent" echo -e " firewall-cmd --reload\n" + elif [ "${OS}" == "SUSE" ]; then + echo -e "\n Make sure that the firewall is not blocking port 80 & 443!\n" + echo -e "Use 'yast firewall' or 'SuSEfirewall2' commands to configure it" fi echo -e "####################################################################################" }