diff options
author | rbalocca <rbalocca@vyatta.com> | 2008-03-06 13:36:02 -0800 |
---|---|---|
committer | rbalocca <rbalocca@vyatta.com> | 2008-03-06 13:36:02 -0800 |
commit | d857e325ba12fa374411e8499f74fecec4c66b3d (patch) | |
tree | def4d66c5948fa7dc348ca210f3a77bc7f2f435f /scripts/VyattaConfigLoad.pm | |
parent | 0d8574ebed484215ec8b8c0f709f04c1a1311333 (diff) | |
parent | eee5bfc8b0d866eef2811b5f77917e05ee7bcee9 (diff) | |
download | vyatta-cfg-d857e325ba12fa374411e8499f74fecec4c66b3d.tar.gz vyatta-cfg-d857e325ba12fa374411e8499f74fecec4c66b3d.zip |
Merge branch 'glendale' into hollywood
Diffstat (limited to 'scripts/VyattaConfigLoad.pm')
-rwxr-xr-x | scripts/VyattaConfigLoad.pm | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/scripts/VyattaConfigLoad.pm b/scripts/VyattaConfigLoad.pm index c09616d..a88d14d 100755 --- a/scripts/VyattaConfigLoad.pm +++ b/scripts/VyattaConfigLoad.pm @@ -9,16 +9,17 @@ use VyattaConfig; # configuration ordering. higher rank configured before lower rank. my $default_rank = 0; -my %config_rank = ( - 'interfaces' => 100, - 'interfaces bridge' => 99, - 'interfaces ethernet' => 98, - 'interfaces tunnel' => 91, - 'system' => 90, - 'protocols static' => 85, - 'service ssh' => 84, - 'service telnet' => 83, - ); +my %config_rank = ( + 'qos-policy' => 110, + 'interfaces' => 100, + 'interfaces bridge' => 99, + 'interfaces ethernet' => 98, + 'interfaces tunnel' => 91, + 'system' => 90, + 'protocols static' => 85, + 'service ssh' => 84, + 'service telnet' => 83, +); my @all_nodes = (); my @all_naked_nodes = (); |