diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-07-08 11:57:21 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-07-08 12:44:37 +0200 |
commit | f6e7607c21f7b35abe242e855a78cda04de2b0e9 (patch) | |
tree | 71df4944fbed0646ffeaadd3cea2f01ed7a1c0af | |
parent | e67216080c845df37e08368fd5bcb56fd5074463 (diff) | |
download | vyatta-cfg-system-f6e7607c21f7b35abe242e855a78cda04de2b0e9.tar.gz vyatta-cfg-system-f6e7607c21f7b35abe242e855a78cda04de2b0e9.zip |
T1465: remove custom priority from "vti vtiX ip" that was causing priority inversion.
-rwxr-xr-x | gen-interface-templates.pl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gen-interface-templates.pl b/gen-interface-templates.pl index 8e08f6ad..dab604a8 100755 --- a/gen-interface-templates.pl +++ b/gen-interface-templates.pl @@ -50,9 +50,7 @@ my %interface_hash = ( # Hash table to check if the priority needs to set @ root # of the node.def which is generated. -my %interface_prio = ( - 'vti/node.tag' => '901', -); +my %interface_prio = (); sub gen_template { my ( $inpath, $outpath, $ifname, $gen_prio, $prio, $depth ) = @_; |