From 790deb464502d97c5e84fe37410cd081d22d4977 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 9 Oct 2011 12:49:57 +0200 Subject: [PATCH] in theory finish the install command Signed-off-by: Nico Schottelius --- lib/cdist/install.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/cdist/install.py b/lib/cdist/install.py index 87714fa8..0f06f5e7 100644 --- a/lib/cdist/install.py +++ b/lib/cdist/install.py @@ -20,14 +20,14 @@ # # -import logging - +import os import cdist.config_install -log = logging.getLogger(__name__) +class Install(cdist.config_install.ConfigInstall): + def __init__(self, *args, **kargs): + """Enhance config install with install support""" + # Setup environ to be used in emulator + os.environ['__install'] = "yes" -def install(args): - """Install remote system""" - process = {} - + super().__init__(*args, **kargs)