diff options
author | terminaldweller <devi@terminaldweller.com> | 2023-12-30 05:29:13 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2023-12-30 05:29:13 +0000 |
commit | b071c37f8c6157669c8ce024bb9b9d1b7e6387af (patch) | |
tree | 495b3d5efc86520f888480879cb11e5aaabe3e62 /openbsd/Vagrantfile | |
parent | alma9 (diff) | |
download | vagrantboxes-b071c37f8c6157669c8ce024bb9b9d1b7e6387af.tar.gz vagrantboxes-b071c37f8c6157669c8ce024bb9b9d1b7e6387af.zip |
updates
Diffstat (limited to 'openbsd/Vagrantfile')
-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-' |