aboutsummaryrefslogtreecommitdiffstats
path: root/fuel/deploy/execution_environment.py
diff options
context:
space:
mode:
authorLiyi Meng <liyi.meng@ericsson.com>2015-10-05 09:55:20 +0200
committerLiyi Meng <liyi.meng@ericsson.com>2015-10-05 09:55:20 +0200
commit66b65768ed635d76562c7d7ae647bc28a68c4c52 (patch)
tree69352ba3bbf89d5d852b9eb2d9672ff461f3835b /fuel/deploy/execution_environment.py
parent0d4a1f4143d71fc616f456a3708d5c8c2a24ec3f (diff)
Add AMT adapter
This adapter allow fuel deploy over Intel AMT/vPro system. Please note that the adapter use amttool to interact with target system, which imply that it only support up to vPro v7. Change-Id: I75f0882ea914b57d7d62338ed803a45104bc2d4e Signed-off-by: Liyi Meng <liyi.meng@ericsson.com>
Diffstat (limited to 'fuel/deploy/execution_environment.py')
-rw-r--r--fuel/deploy/execution_environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuel/deploy/execution_environment.py b/fuel/deploy/execution_environment.py
index e671463e4..cc6c33ea5 100644
--- a/fuel/deploy/execution_environment.py
+++ b/fuel/deploy/execution_environment.py
@@ -40,7 +40,7 @@ class ExecutionEnvironment(object):
if type == 'libvirt':
return LibvirtEnvironment(storage_dir, dha_path, dea, root_dir)
- if type == 'ipmi' or type == 'hp':
+ if type in ['ipmi', 'hp', 'amt']:
return VirtualFuel(storage_dir, pxe_bridge, dha_path, root_dir)
return super(ExecutionEnvironment, cls).__new__(cls)