diff options
author | Mohit Mehta <mohit@vyatta.com> | 2010-09-21 17:35:37 -0700 |
---|---|---|
committer | Mohit Mehta <mohit@vyatta.com> | 2010-09-21 17:35:37 -0700 |
commit | 4a5a65f74a43ff33a0c4d54eec377502a6d05fdf (patch) | |
tree | 31a74a67cf8a6c835e995a710c0ebefdd45a2490 /lib/Vyatta/Zone.pm | |
parent | 13587019079b9d9a56dc9c4938794c822b8c5ee4 (diff) | |
download | vyatta-cfg-4a5a65f74a43ff33a0c4d54eec377502a6d05fdf.tar.gz vyatta-cfg-4a5a65f74a43ff33a0c4d54eec377502a6d05fdf.zip |
* move count_iptables_rule to MISC module
Diffstat (limited to 'lib/Vyatta/Zone.pm')
-rwxr-xr-x | lib/Vyatta/Zone.pm | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/Vyatta/Zone.pm b/lib/Vyatta/Zone.pm index 4b169b5..eccf8ab 100755 --- a/lib/Vyatta/Zone.pm +++ b/lib/Vyatta/Zone.pm @@ -121,16 +121,6 @@ sub get_zone_chain { return $chain; } -sub count_iptables_rules { - my ($command, $table, $chain) = @_; - my @lines = `sudo $command -t $table -L $chain -n --line`; - my $cnt = 0; - foreach my $line (@lines) { - $cnt++ if $line =~ /^\d/; - } - return $cnt; -} - sub validity_checks { my @all_zones = get_all_zones("listNodes"); my @all_interfaces = (); |