diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/network/shorewall.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/shorewall.pm b/lib/network/shorewall.pm index aa286e7..ee71d1d 100644 --- a/lib/network/shorewall.pm +++ b/lib/network/shorewall.pm @@ -109,7 +109,7 @@ sub read { #- read old rules file if config is not moved to rules.drakx yet my @rules = get_config_file(-f "$::prefix${shorewall_root}/rules.drakx" ? 'rules.drakx' : 'rules'); require services; - my %conf = (disabled => services::is_service_running(shorewall), + my %conf = (disabled => !services::starts_on_boot("shorewall"), ports => join(' ', map { my $e = $_; map { "$_/$e->[3]" } split(',', $e->[4]); |