Changeset 11225
- Timestamp:
- 08/17/08 20:45:47 (5 months ago)
- Location:
- trunk/client
- Files:
-
- 4 modified
-
firewall/ChangeLog (modified) (1 diff)
-
firewall/src/EBox/Firewall/IptablesRule.pm (modified) (1 diff)
-
services/ChangeLog (modified) (1 diff)
-
services/src/EBox/Model/ServiceConfigurationTable.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/firewall/ChangeLog
r11196 r11225 5 5 + Bugfix. Use #DEBHELPER# properly to be able to flush the firewall rules 6 6 when the package is uninstalled 7 + Add support for ESP protocol 7 8 0.11.102 8 9 + Set editable attribute to 1 in Decision field. To comply with -
trunk/client/firewall/src/EBox/Firewall/IptablesRule.pm
r10728 r11225 139 139 } 140 140 141 } elsif ($protocol eq any ('gre', 'icmp' )) {141 } elsif ($protocol eq any ('gre', 'icmp', 'esp')) { 142 142 $iptables = " -p $invProto $protocol"; 143 143 push (@{$self->{'service'}}, $iptables); -
trunk/client/services/ChangeLog
r11196 r11225 3 3 + Add help to fields in service model 4 4 + Increase some field length 5 + Add support for ESP protocol 5 6 0.11.102 6 7 + Remove optional attribute from PortRange as it didn't make sense -
trunk/client/services/src/EBox/Model/ServiceConfigurationTable.pm
r10800 r11225 44 44 use EBox::Sudo; 45 45 46 use Perl6::Junction qw( any ); 46 47 47 48 use strict; … … 79 80 'value' => 'udp', 80 81 'printableValue' => 'UDP' 82 }, 83 { 84 'value' => 'esp', 85 'printableValue' => 'ESP' 81 86 }, 82 87 { … … 152 157 return unless (exists $parms->{'protocol'}); 153 158 my $type = $parms->{'protocol'}->value(); 154 if ($type eq 'gre' or $type eq 'icmp' or $type eq 'any') {159 if ($type eq any ('gre', 'icmp', 'esp') ) { 155 160 my $source = $parms->{'source'}; 156 161 my $destination = $parms->{'destination'};
