Source code for cobbler.cobbler_collections.profiles

"""
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA
"""

from cobbler.cobbler_collections import collection
from cobbler.items import profile as profile
from cobbler import utils
from cobbler.cexceptions import CX


[docs] class Profiles(collection.Collection): """ A profile represents a distro paired with an automatic OS installation template file. """
[docs] @staticmethod def collection_type() -> str: return "profile"
[docs] @staticmethod def collection_types() -> str: return "profiles"
[docs] def factory_produce(self, api, item_dict): """ Return a Distro forged from item_dict """ return profile.Profile(api, **item_dict)
[docs] def remove(self, name: str, with_delete: bool = True, with_sync: bool = True, with_triggers: bool = True, recursive: bool = False): """ Remove element named 'name' from the collection :raises CX: In case the name of the object was not given or any other descendant would be orphaned. """ if not recursive: for system in self.api.systems(): if system.profile is not None and system.profile == name: raise CX(f"removal would orphan system: {system.name}") obj = self.find(name=name) if obj is None: raise CX("cannot delete an object that does not exist: %s" % name) if recursive: kids = obj.descendants kids.sort(key=lambda x: -x.depth) for k in kids: self.api.remove_item( k.COLLECTION_TYPE, k, recursive=False, delete=with_delete, with_triggers=with_triggers, with_sync=with_sync, ) if with_delete: if with_triggers: utils.run_triggers(self.api, obj, "/var/lib/cobbler/triggers/delete/profile/pre/*", []) self.lock.acquire() try: self.remove_from_indexes(obj) del self.listing[name] finally: self.lock.release() self.collection_mgr.serialize_delete(self, obj) if with_delete: if with_triggers: utils.run_triggers(self.api, obj, "/var/lib/cobbler/triggers/delete/profile/post/*", []) utils.run_triggers(self.api, obj, "/var/lib/cobbler/triggers/change/*", []) if with_sync: lite_sync = self.api.get_sync() lite_sync.remove_single_profile(name)