mirror of
https://github.com/jon4hz/proxmox-ve.git
synced 2025-12-19 23:15:41 +01:00
12 lines
417 B
Plaintext
12 lines
417 B
Plaintext
Vagrant.configure(2) do |config|
|
|
config.vm.provider 'libvirt' do |lv|
|
|
lv.machine_type = 'q35'
|
|
lv.graphics_type = 'spice'
|
|
lv.video_type = 'qxl'
|
|
lv.disk_bus = 'scsi'
|
|
lv.disk_device = 'sda'
|
|
lv.channel :type => 'unix', :target_name => 'org.qemu.guest_agent.0', :target_type => 'virtio'
|
|
lv.channel :type => 'spicevmc', :target_name => 'com.redhat.spice.0', :target_type => 'virtio'
|
|
end
|
|
end
|