summaryrefslogtreecommitdiff
path: root/scripts/VyattaConfig.pm
diff options
context:
space:
mode:
authorMichael Larson <slioch@eng-140.vyatta.com>2008-07-10 13:37:49 -0700
committerMichael Larson <slioch@eng-140.vyatta.com>2008-07-10 13:37:49 -0700
commita2be0181a81adfca6f8fdf7c9b6190244c7146e2 (patch)
treea773f2fc1e13b29167157ebd985476875ced5afd /scripts/VyattaConfig.pm
parent42d6c942800e2273b77ea92371ffdcb3f183163f (diff)
downloadvyatta-cfg-a2be0181a81adfca6f8fdf7c9b6190244c7146e2.tar.gz
vyatta-cfg-a2be0181a81adfca6f8fdf7c9b6190244c7146e2.zip
Revert "fix for bug 3441. Removed def from listOutputNodes(), which allowed other code that filters out def file to be removed."
Need to spend more time with this fix--'def' is used in locations to suppress non-user specified default values. will reapply revised fix after a bit more vetting. This reverts commit 42d6c942800e2273b77ea92371ffdcb3f183163f.
Diffstat (limited to 'scripts/VyattaConfig.pm')
-rwxr-xr-xscripts/VyattaConfig.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/VyattaConfig.pm b/scripts/VyattaConfig.pm
index 1c0eaf3..3c4b51f 100755
--- a/scripts/VyattaConfig.pm
+++ b/scripts/VyattaConfig.pm
@@ -130,9 +130,7 @@ sub listOrigNodes {
$tmp =~ s/\n//g;
$tmp =~ s/%2F/\//g;
#print "DEBUG VyattaConfig->listNodes(): node = $tmp\n";
- if ($tmp ne 'def') {
- push @nodes_modified, $tmp;
- }
+ push @nodes_modified, $tmp;
}
return @nodes_modified;