From dded5f54c2dd4554673e64c65095695c5dac216f Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 4 Oct 2017 17:09:34 +0200 Subject: [PATCH] tests: set `volume_cache` 'unsafe' Set volume_cache to unsafe for CI VMs. We might be using tmpfs for volume disks soon, therefore 'unsafe' is a prerequisite for volume_cache Signed-off-by: Guillaume Abrioux --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index ae02f838c..4dbc9c37a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -134,6 +134,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # "host doesn't support requested feature: CPUID.01H:EDX.ds [bit 21]" config.vm.provider :libvirt do |lv| lv.cpu_mode = 'host-passthrough' + lv.volume_cache = 'unsafe' end # Faster bootup. Disables mounting the sync folder for libvirt and virtualbox -- 2.39.5