mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Ensure open3 required and qemu-utils in docker (#1306)
Depending on load order of libraries as well as version of ruby, need to require open3 before attempting to reference `Open3`. There is an additional dependency on qemu-utils to dynamically retrieve the image information to provide the virtual size and format automatically. Add this to the docker image to ensure it's available for users of this distribution format. Fixes: #1305
This commit is contained in:
@@ -14,6 +14,7 @@ RUN apt update \
|
||||
kmod \
|
||||
libvirt-bin \
|
||||
openssh-client \
|
||||
qemu-utils \
|
||||
rsync \
|
||||
&& rm -rf /var/lib/apt/lists \
|
||||
;
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
require 'log4r'
|
||||
require 'open3'
|
||||
|
||||
module VagrantPlugins
|
||||
module ProviderLibvirt
|
||||
|
||||
Reference in New Issue
Block a user