summaryrefslogtreecommitdiffstats
path: root/cucumber/features/support/helpers/vm_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'cucumber/features/support/helpers/vm_helper.rb')
-rw-r--r--cucumber/features/support/helpers/vm_helper.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/cucumber/features/support/helpers/vm_helper.rb b/cucumber/features/support/helpers/vm_helper.rb
index ad1493f8..3f172136 100644
--- a/cucumber/features/support/helpers/vm_helper.rb
+++ b/cucumber/features/support/helpers/vm_helper.rb
@@ -74,8 +74,14 @@ class VM
rexml = REXML::Document.new(default_domain_xml)
rexml.elements['domain'].add_element('name')
rexml.elements['domain/name'].text = @domain_name
- rexml.elements['domain'].add_element('uuid')
- rexml.elements['domain/uuid'].text = LIBVIRT_DOMAIN_UUID
+ # PGH
+ begin
+ old_domain = @virt.lookup_domain_by_name(LIBVIRT_DOMAIN_NAME)
+ rexml.elements['domain'].add_element('uuid')
+ rexml.elements['domain/uuid'].text = old_domain.uuid
+ old_domain.undefine
+ rescue
+ end
update(rexml.to_s)
@display = Display.new(@domain_name, x_display)
set_cdrom_boot(TAILS_ISO)