summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rwxr-xr-xlib/Vyatta/Config.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Vyatta/Config.pm b/lib/Vyatta/Config.pm
index 371fe32..a02ee18 100755
--- a/lib/Vyatta/Config.pm
+++ b/lib/Vyatta/Config.pm
@@ -356,6 +356,15 @@ sub listDeleted {
return @{$ref};
}
+## returnDeletedValues("level")
+# return array of deleted values of specified "multi node"
+sub returnDeletedValues {
+ my ($self, $path) = @_;
+ my $ref = $self->{_cstore}->cfgPathGetDeletedValues(
+ $self->get_path_comps($path));
+ return @{$ref};
+}
+
## isAdded("node")
# whether specified node has been added in working config
sub isAdded {