summaryrefslogtreecommitdiff
path: root/scripts/VyattaConfigLoad.pm
diff options
context:
space:
mode:
authorroot <root@eng-140.vyatta.com>2008-07-09 11:50:17 -0700
committerroot <root@eng-140.vyatta.com>2008-07-09 11:50:17 -0700
commit42d6c942800e2273b77ea92371ffdcb3f183163f (patch)
tree20f719fd409d57fb93c67d6a6c0be37d9598b02a /scripts/VyattaConfigLoad.pm
parent1277a4a911cf39e0e2200eea8ecbd483d1610f2f (diff)
downloadvyatta-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-xscripts/VyattaConfigLoad.pm3
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;