diff options
author | root <root@eng-140.vyatta.com> | 2008-07-09 11:50:17 -0700 |
---|---|---|
committer | root <root@eng-140.vyatta.com> | 2008-07-09 11:50:17 -0700 |
commit | 42d6c942800e2273b77ea92371ffdcb3f183163f (patch) | |
tree | 20f719fd409d57fb93c67d6a6c0be37d9598b02a /scripts/VyattaConfigLoad.pm | |
parent | 1277a4a911cf39e0e2200eea8ecbd483d1610f2f (diff) | |
download | vyatta-cfg-42d6c942800e2273b77ea92371ffdcb3f183163f.tar.gz vyatta-cfg-42d6c942800e2273b77ea92371ffdcb3f183163f.zip |
fix for bug 3441. Removed def from listOutputNodes(), which allowed other code that filters out def file to be removed.
Diffstat (limited to 'scripts/VyattaConfigLoad.pm')
-rwxr-xr-x | scripts/VyattaConfigLoad.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/VyattaConfigLoad.pm b/scripts/VyattaConfigLoad.pm index 1a7f26e..c8563bb 100755 --- a/scripts/VyattaConfigLoad.pm +++ b/scripts/VyattaConfigLoad.pm @@ -297,9 +297,6 @@ sub findDeletedNodes { $active_cfg->setLevel(join ' ', @active_path); my @active_nodes = $active_cfg->listOrigNodes(); foreach (@active_nodes) { - if ($_ eq 'def') { - next; - } if ($_ eq 'node.val') { findDeletedValues($new_ref, \@active_path); next; |