diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-12-08 14:03:06 -0800 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-12-08 14:03:06 -0800 |
commit | 625b7ceb9f6d751a7317a3570fc93d40321c7d2b (patch) | |
tree | 2431e0d8c1241318aa4fe1df50b3d2a059691b33 | |
parent | 3a9590e956f5aa688300a4d2f96eaed210d536f8 (diff) | |
download | vyatta-cfg-qos-625b7ceb9f6d751a7317a3570fc93d40321c7d2b.tar.gz vyatta-cfg-qos-625b7ceb9f6d751a7317a3570fc93d40321c7d2b.zip |
fix priority generation bug in traffic-policy for vrrp interfaces
-rwxr-xr-x | gen-interface-templates.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gen-interface-templates.pl b/gen-interface-templates.pl index c2293aa..8e435f6 100755 --- a/gen-interface-templates.pl +++ b/gen-interface-templates.pl @@ -94,7 +94,9 @@ sub gen_template { open my $inf, '<', $in or die "Can't open $in: $!"; open my $outf, '>', $out or die "Can't open $out: $!"; - print $outf "priority: 820 \# after vrrp\n" if ($iftree =~ /vrrp/); + print $outf "priority: 820 \# after vrrp\n" + if ($iftree =~ /vrrp/ && ($in =~ /\/in\// || $in =~ /\/out\//)); + while ( my $line = <$inf> ) { $line =~ s#\$IFNAME#$ifname#; print $outf $line; |