diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-07 17:00:15 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-07 17:00:15 -0800 |
commit | b671ecf9d866f850467b1d065a46d3b31ce9a177 (patch) | |
tree | 5e70989fc815edaceff071f279c5789484fb5cfb /scripts | |
parent | f7be9cad795c67d5d1653aed193171139de6021b (diff) | |
download | vyatta-cfg-qos-b671ecf9d866f850467b1d065a46d3b31ce9a177.tar.gz vyatta-cfg-qos-b671ecf9d866f850467b1d065a46d3b31ce9a177.zip |
Cleanup whitespace
Git hates trailing whitespace.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-qos.pl | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/scripts/vyatta-qos.pl b/scripts/vyatta-qos.pl index 3a3d8f7..1404846 100755 --- a/scripts/vyatta-qos.pl +++ b/scripts/vyatta-qos.pl @@ -3,12 +3,12 @@ # 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. @@ -106,7 +106,7 @@ sub delete_interface { sub start_interface { my $ifname = shift; my $interface = new Vyatta::Interface($ifname); - + die "Unknown interface type: $ifname" unless $interface; my $config = new Vyatta::Config; $config->setLevel($interface->path() . ' qos-policy'); @@ -116,7 +116,7 @@ sub start_interface { next unless $policy; update_interface($ifname, $direction, $policy); - } + } } ## update_interface('eth0', 'out', 'my-shaper') @@ -147,7 +147,7 @@ sub update_interface { if (! close $out && ! defined $debug) { # cleanup any partial commands delete_interface($interface, $direction); - + # replay commands to stdout open $out, '>-'; $shaper->commands($out, $interface, $direction); @@ -205,7 +205,7 @@ sub serial_vif_using { foreach my $encap (qw/cisco-hdlc frame-relay ppp/) { foreach my $vif ( $config->listNodes("$type $interface vif") ) { - push @affected, + push @affected, using_policy($config, $name, "$type $interface $encap vif $vif"); } } @@ -230,7 +230,7 @@ sub interfaces_using { foreach my $type ( $config->listNodes() ) { foreach my $interface ( $config->listNodes($type) ) { push @affected, using_policy($config, $name, "$type $interface"); - + my $vif_check = $interfaceVifUsing{$type}; if ($vif_check) { push @affected, $vif_check->($config, $name, $type, $interface); @@ -264,7 +264,7 @@ sub serialName { sub adslName { # adsl-name pvc pvc-num ppp-type id my ($name, undef, undef, $type, $id) = @_; - + if ($id) { return "$name.$id"; } else { @@ -375,5 +375,3 @@ GetOptions( delete_interface(@deleteInterface) if ( $#deleteInterface == 1 ); update_interface(@updateInterface) if ( $#updateInterface == 2 ); create_policy(@createPolicy) if ( $#createPolicy == 1); - - |