diff options
author | Rick Balocca <rbalocca@vyatta.com> | 2008-07-15 14:23:54 -0700 |
---|---|---|
committer | Rick Balocca <rbalocca@vyatta.com> | 2008-07-15 14:23:54 -0700 |
commit | 5203e1fafc937098a514164db30857e32283c000 (patch) | |
tree | aac791f1da45d857ac3c19b77cafa1c54b9aab09 /scripts/VyattaConfigLoad.pm | |
parent | 7afb31102689ebb71da4a08f92de59249c55d80b (diff) | |
parent | 3f41fcca673762ff27328192036719eace6b6495 (diff) | |
download | vyatta-cfg-5203e1fafc937098a514164db30857e32283c000.tar.gz vyatta-cfg-5203e1fafc937098a514164db30857e32283c000.zip |
Merge branch 'hollywood'
Diffstat (limited to 'scripts/VyattaConfigLoad.pm')
-rwxr-xr-x | scripts/VyattaConfigLoad.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/VyattaConfigLoad.pm b/scripts/VyattaConfigLoad.pm index c8563bb..1a7f26e 100755 --- a/scripts/VyattaConfigLoad.pm +++ b/scripts/VyattaConfigLoad.pm @@ -297,6 +297,9 @@ 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; |