diff options
Diffstat (limited to 'openbsd')
-rw-r--r-- | openbsd/Vagrantfile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openbsd/Vagrantfile b/openbsd/Vagrantfile index 032575a..0493e28 100644 --- a/openbsd/Vagrantfile +++ b/openbsd/Vagrantfile @@ -9,7 +9,8 @@ MEMORY = 128 Vagrant.require_version '>= 2.2.6' Vagrant.configure('2') do |config| config.vm.box = 'generic/openbsd7' - config.vm.box_version = '3.6.10' + # config.vm.box_version = '3.6.10' + config.vm.box_version = '4.3.8' config.vm.box_check_update = false config.vm.synced_folder './', MOUNT_POINT, type: 'nfs', nfs_version: 3, nfs_udp: false, disabled: true config.vm.hostname = 'openbsd7' @@ -17,7 +18,7 @@ Vagrant.configure('2') do |config| config.vm.graceful_halt_timeout = 45 # CFLAGS="-I/opt/vagrant/embedded/include/ruby-3.0.0/ruby" vagrant plugin install vagrant-libvirt - config.vagrant.plugins = [{ 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] + # config.vagrant.plugins = [{ 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] config.vm.provider 'libvirt' do |libvirt| libvirt.default_prefix = 'openbsd7-' |