installer/installercontainer.py
4d53ba03
 #
 #    Copyright (C) 2015 vmware inc.
 #
 #    Author: Touseef Liaqat <tliaqat@vmware.com>
 
 from installer import Installer
 
 class InstallerContainer(object):
c533b308
     def __init__(self, install_config, maxy=0, maxx=0,
                  iso_installer=False, rpm_path="../stage/RPMS",
                  log_path="../stage/LOGS"):
1b11aa2d
 
4d53ba03
         self.install_config = install_config
         self.maxy = maxy
         self.maxx = maxx
         self.iso_installer = iso_installer
         self.rpm_path = rpm_path
         self.log_path = log_path
 
     def install(self, params):
         installer = None
cd21f92d
         installer = Installer(self.install_config, self.maxy, self.maxx,
                               self.iso_installer, self.rpm_path, self.log_path)
4d53ba03
 
c533b308
         return installer.install(params)