mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Builds on the work started by @randomvariable in #840 addressing the comments left there. Fixes: #529 Signed-off-by: Rodolfo Olivieri rodolfo.olivieri3@gmail.com
14 lines
310 B
Ruby
14 lines
310 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
#
|
|
# frozen_string_literal: true
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "infernix/tinycore"
|
|
config.ssh.shell = "/bin/sh"
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
config.vm.provider :libvirt do |libvirt|
|
|
libvirt.cpus = 2
|
|
end
|
|
end
|