From 86ab93efbb25d12d7e1f7b9a44e26e5429c71055 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Sat, 24 Sep 2022 08:38:31 +0200 Subject: [PATCH] Vagrantfile: address deprecation warning ``` ==> mgr0: Libvirt Provider: volume_cache is deprecated. Use disk_driver :cache => 'unsafe' instead. ``` Signed-off-by: Guillaume Abrioux --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 72e891f1b..49742c7c8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -133,7 +133,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' + lv.disk_driver :cache => 'unsafe' lv.graphics_type = 'none' lv.cpus = 2 end