in theory finish the install command

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-10-09 12:49:57 +02:00
parent 93a312702c
commit 790deb4645
1 changed files with 7 additions and 7 deletions

View File

@ -20,14 +20,14 @@
# #
# #
import logging import os
import cdist.config_install 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): super().__init__(*args, **kargs)
"""Install remote system"""
process = {}