}
+void
+MetaSnappers::unload()
+{
+ for (iterator it = entries.begin(); it != entries.end(); ++it)
+ it->unload();
+}
+
+
MetaSnappers::iterator
MetaSnappers::find(const string& config_name)
{
/*
* Copyright (c) [2012-2015] Novell, Inc.
+ * Copyright (c) 2018 SUSE LLC
*
* All Rights Reserved.
*
void init();
+ void unload();
+
typedef list<MetaSnapper>::iterator iterator;
typedef list<MetaSnapper>::const_iterator const_iterator;
/*
* Copyright (c) [2012-2015] Novell, Inc.
+ * Copyright (c) 2018 SUSE LLC
*
* All Rights Reserved.
*
y2mil("Exiting");
+ meta_snappers.unload();
+
return 0;
}