From 045b83d76d62e463976a9621db6ed8affc4a1a9a Mon Sep 17 00:00:00 2001 From: ligc Date: Thu, 28 Mar 2013 01:41:14 +0000 Subject: [PATCH] fix for bug 3446: add 69 into ports list, chkconfig SuSEfirewall2_init on git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@15678 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/configfirewall | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT/postscripts/configfirewall b/xCAT/postscripts/configfirewall index 4fad4745c..477614c1d 100755 --- a/xCAT/postscripts/configfirewall +++ b/xCAT/postscripts/configfirewall @@ -6,7 +6,7 @@ use Getopt::Long; Getopt::Long::Configure("bundling"); $Getopt::Long::ignorecase = 0; -my @allowed_ports = ("22", "53", "80", "443", "873", "3001", "3002"); +my @allowed_ports = ("22", "53", "69", "80", "443", "873", "3001", "3002"); if(scalar(@ARGV) == 0) { @@ -128,6 +128,8 @@ elsif (-f "/etc/SuSE-release") system($cmd); # SuSEfirewall2_setup should be stared on reboot + $cmd = "chkconfig SuSEfirewall2_init on"; + system($cmd); $cmd = "chkconfig SuSEfirewall2_setup on"; system($cmd); }