diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | lib/network/shorewall.pm | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- load services when needed + 1.19: - drakconnect: o add support for 802.1x EAP with WPA Enterprise Patch (mga#8577, diff --git a/lib/network/shorewall.pm b/lib/network/shorewall.pm index a032587..aa286e7 100644 --- a/lib/network/shorewall.pm +++ b/lib/network/shorewall.pm @@ -108,6 +108,7 @@ sub read { my ($o_in) = @_; #- 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), ports => join(' ', map { my $e = $_; |