From 1db72a2f011e2174e48d48cc3e3435065c839377 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Mon, 6 Sep 2021 17:57:49 +0200 Subject: [PATCH] Pre-Defining of VSphere configurations --- lib/cr_tf/app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/cr_tf/app.py b/lib/cr_tf/app.py index f1eea53..db14793 100644 --- a/lib/cr_tf/app.py +++ b/lib/cr_tf/app.py @@ -47,7 +47,7 @@ from .xlate import __base_dir__ as __xlate_base_dir__ from .xlate import __mo_file__ as __xlate_mo_file__ from .xlate import XLATOR, LOCALE_DIR, DOMAIN -__version__ = '1.1.9' +__version__ = '1.1.10' LOG = logging.getLogger(__name__) SIGNAL_NAMES = { @@ -262,6 +262,8 @@ class CrTfApplication(BaseApplication): appname=self.appname, verbose=self.verbose, base_dir=self.base_dir, config_file=self.cfg_file) + self.config.init_vsphere_defaults() + if self.cfg_file.exists(): try: self.config.read() -- 2.39.5