aboutsummaryrefslogtreecommitdiffstats
path: root/fuel/deploy/execution_environment.py
diff options
context:
space:
mode:
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)