From 0a1d79cbee5c603631ebf6c79c5d050db61d3c77 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Thu, 28 May 2020 16:31:26 +0200 Subject: [PATCH] Bugfixing --- lib/cr_vmware_tpl/cobbler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cr_vmware_tpl/cobbler.py b/lib/cr_vmware_tpl/cobbler.py index 75aa10c..e981810 100644 --- a/lib/cr_vmware_tpl/cobbler.py +++ b/lib/cr_vmware_tpl/cobbler.py @@ -32,7 +32,7 @@ from .config import CrTplConfiguration from .xlate import XLATOR -__version__ = '0.3.3' +__version__ = '0.3.4' LOG = logging.getLogger(__name__) @@ -251,7 +251,7 @@ class Cobbler(BaseHandler): os_id = self.config.os_id comment = "Profile for creating a {} profile.".format(os_id) - args = [] + args = ['profile', 'add'] args.append('--name') args.append(self.config.cobbler_profile) args.append('--distro') -- 2.39.5