>From ef4c550aaf3d6b810aa534dfc6fa6442805b25e1 Mon Sep 17 00:00:00 2001 From: Bill Peck Date: Mon, 5 Oct 2009 13:40:23 -0400 Subject: [PATCH 02/14] use get_conceptual_parent() --- cobbler/action_litesync.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cobbler/action_litesync.py b/cobbler/action_litesync.py index 428c269..63fdacd 100644 --- a/cobbler/action_litesync.py +++ b/cobbler/action_litesync.py @@ -150,7 +150,7 @@ class BootLiteSync: itanic = False profile = self.profiles.find(name=system_record.profile) if profile is not None: - distro = self.distros.find(name=profile.distro) + distro = self.distros.find(name=profile.get_conceptual_parent().name) if distro is not None and distro in [ "ia64", "IA64"]: itanic = True -- 1.6.6.1