diff options
author | Philip Hands <phil@hands.com> | 2016-06-21 17:22:10 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-21 17:31:16 +0200 |
commit | b5c6a9ddff61f9ed783c6ac6e3feb952f85094f2 (patch) | |
tree | 61091eec3786722d190009e4211fd1e33dd2e6f6 /cucumber/features/support/helpers | |
parent | 03cfc1f8a12a8290ffffd1742b608cc566c41003 (diff) | |
download | jenkins.debian.net-b5c6a9ddff61f9ed783c6ac6e3feb952f85094f2.tar.xz |
lvc: put VM storage in /srv/workspace/vm-pools/
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 a96bc514..2040937b 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-#{pool_name}" + @pool_path = "/srv/workspace/vm-pools/#{pool_name}" begin @pool = @virt.lookup_storage_pool_by_name(pool_name) rescue Libvirt::RetrieveError |