diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-16 09:58:58 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-16 09:58:58 -0700 |
commit | f9ab046eddd19417c0b2bbe4c5afed2d4516b53f (patch) | |
tree | d563f2cb1b9d869ada58d94a4bf1e0b5181c8b21 /scripts/vyatta-policy-action-verify.pl | |
parent | 8b782b88bd535d739166d21a4cbb95931fff2ce0 (diff) | |
download | vyatta-cfg-quagga-f9ab046eddd19417c0b2bbe4c5afed2d4516b53f.tar.gz vyatta-cfg-quagga-f9ab046eddd19417c0b2bbe4c5afed2d4516b53f.zip |
Reindent perl code
Make it look nice and tidy
Diffstat (limited to 'scripts/vyatta-policy-action-verify.pl')
-rwxr-xr-x | scripts/vyatta-policy-action-verify.pl | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/scripts/vyatta-policy-action-verify.pl b/scripts/vyatta-policy-action-verify.pl index d426dfd2..b914837e 100755 --- a/scripts/vyatta-policy-action-verify.pl +++ b/scripts/vyatta-policy-action-verify.pl @@ -1,21 +1,21 @@ #!/usr/bin/perl -w # # Module: vyatta-policy-action-verify.pl -# +# # **** License **** # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. -# +# # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. -# +# # This code was originally developed by Vyatta, Inc. # Portions created by Vyatta are Copyright (C) 2008 Vyatta, Inc. # All Rights Reserved. -# +# # **** End License **** # use lib "/opt/vyatta/share/perl5/"; @@ -30,26 +30,27 @@ use File::Copy; #solution: put a commit statement in the rule node that does the action test and squirt out delete hook in rule node on a delete. my $route_map = shift; -my $rule = shift; -my $action = shift; +my $rule = shift; +my $action = shift; -if (!defined($rule) || !defined($route_map)) { - exit 1; +if ( !defined($rule) || !defined($route_map) ) { + exit 1; } my $config = new Vyatta::Config; $config->setLevel('policy route-map $route_map rule $rule'); -if ($config->exists("action")) { +if ( $config->exists("action") ) { exit 0; } my @qualifiers = $config->listNodes(); foreach my $qualifiers (@qualifiers) { - exit 1; #error! + exit 1; #error! } #need to get a count of what's left and if action is deleted, but other nodes are present then reject - -if (-e "/tmp/delete-policy-route-map-$route_map-rule-$rule") { - system "/usr/bin/vyatta-vtysh -c \"configure terminal\" -c \"no route-map $route_map $action $rule\""; + +if ( -e "/tmp/delete-policy-route-map-$route_map-rule-$rule" ) { + system +"/usr/bin/vyatta-vtysh -c \"configure terminal\" -c \"no route-map $route_map $action $rule\""; } |