diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-07-08 11:57:21 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-07-08 11:57:21 +0200 |
commit | 41c1291ee3e8bead09305ff120d8d28e4a21d030 (patch) | |
tree | 5cfc77a35ea9a72a25b0ac26dc0d26e96052d48b | |
parent | eebb654d64fc8dafeecbda93414436a51881f776 (diff) | |
download | vyatta-cfg-system-41c1291ee3e8bead09305ff120d8d28e4a21d030.tar.gz vyatta-cfg-system-41c1291ee3e8bead09305ff120d8d28e4a21d030.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 ) = @_; |