summaryrefslogtreecommitdiffstats
path: root/fuel/deploy/environments/libvirt_environment.py
diff options
context:
space:
mode:
Diffstat (limited to 'fuel/deploy/environments/libvirt_environment.py')
-rw-r--r--fuel/deploy/environments/libvirt_environment.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/fuel/deploy/environments/libvirt_environment.py b/fuel/deploy/environments/libvirt_environment.py
index 785eeca7b..af2d3f8fb 100644
--- a/fuel/deploy/environments/libvirt_environment.py
+++ b/fuel/deploy/environments/libvirt_environment.py
@@ -10,16 +10,15 @@
from lxml import etree
import glob
-
-import common
from execution_environment import ExecutionEnvironment
-exec_cmd = common.exec_cmd
-err = common.err
-log = common.log
-check_dir_exists = common.check_dir_exists
-check_file_exists = common.check_file_exists
-check_if_root = common.check_if_root
+from common import (
+ exec_cmd,
+ log,
+ check_dir_exists,
+ check_file_exists,
+ delete,
+)
class LibvirtEnvironment(ExecutionEnvironment):
@@ -56,7 +55,7 @@ class LibvirtEnvironment(ExecutionEnvironment):
temp_vm_file = '%s/%s' % (temp_dir, vm_name)
exec_cmd('cp %s %s' % (vm_template, temp_vm_file))
self.define_vm(vm_name, temp_vm_file, disk_path)
- exec_cmd('rm -fr %s' % temp_dir)
+ delete(temp_dir)
def start_vms(self):
for node_id in self.node_ids:
@@ -95,6 +94,7 @@ class LibvirtEnvironment(ExecutionEnvironment):
for node_id in self.node_ids:
self.delete_vm(node_id)
+
def setup_environment(self):
check_dir_exists(self.network_dir)
self.cleanup_environment()