diff options
author | Philip Hands <phil@hands.com> | 2016-06-17 13:27:37 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-18 23:32:58 +0200 |
commit | 98d99ce1af854edd1aefa09d7abf8174d462d96b (patch) | |
tree | 4848d87ecc880df334714bba0ac2f6ff530208a4 /cucumber/features/support/helpers | |
parent | 1466bd88e1f023b6e1b69c7c62d0b5ba047eb227 (diff) | |
download | jenkins.debian.net-98d99ce1af854edd1aefa09d7abf8174d462d96b.tar.xz |
lvc: make the storage-pool directory a little more obvious
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'cucumber/features/support/helpers')
-rw-r--r-- | cucumber/features/support/helpers/storage_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cucumber/features/support/helpers/storage_helper.rb b/cucumber/features/support/helpers/storage_helper.rb index b1f316c6..a96bc514 100644 --- a/cucumber/features/support/helpers/storage_helper.rb +++ b/cucumber/features/support/helpers/storage_helper.rb @@ -19,7 +19,7 @@ class VMStorage pool_xml = REXML::Document.new(File.read("#{@xml_path}/storage_pool.xml")) pool_name = LIBVIRT_DOMAIN_NAME pool_xml.elements['pool/name'].text = pool_name - @pool_path = "#{$config["TMPDIR"]}/#{pool_name}" + @pool_path = "#{$config["TMPDIR"]}/pool-#{pool_name}" begin @pool = @virt.lookup_storage_pool_by_name(pool_name) rescue Libvirt::RetrieveError |