Autodeployer support for ODL Plugin installation + Fuel 6.1
[genesis.git] / fuel / deploy / execution_environment.py
similarity index 67%
rename from fuel/deploy/setup_execution_environment.py
rename to fuel/deploy/execution_environment.py
index d97fcde..e671463 100644 (file)
@@ -1,12 +1,20 @@
+###############################################################################
+# Copyright (c) 2015 Ericsson AB and others.
+# szilard.cserey@ericsson.com
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+###############################################################################
+
+
 import yaml
 import io
-import sys
 import os
 
 import common
 from environments.libvirt_environment import LibvirtEnvironment
 from environments.virtual_fuel import VirtualFuel
-from dea import DeploymentEnvironmentAdapter
 
 exec_cmd = common.exec_cmd
 err = common.err
@@ -16,7 +24,9 @@ check_file_exists = common.check_file_exists
 check_if_root = common.check_if_root
 ArgParser = common.ArgParser
 
+
 class ExecutionEnvironment(object):
+
     def __new__(cls, storage_dir, pxe_bridge, dha_path, dea):
 
         with io.open(dha_path) as yaml_file: