diff options
author | terminaldweller <thabogre@gmail.com> | 2022-03-28 06:31:31 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-03-28 06:31:31 +0000 |
commit | 0b4c01d1156c34cfde95cfd6d160593612b61f06 (patch) | |
tree | dbc92c99bf0d6db5b2f7e8a5aa58eac960b2ccdb /openbsd/Vagrantfile | |
parent | removed some useless machines (diff) | |
download | vagrantboxes-0b4c01d1156c34cfde95cfd6d160593612b61f06.tar.gz vagrantboxes-0b4c01d1156c34cfde95cfd6d160593612b61f06.zip |
openbsd
Diffstat (limited to 'openbsd/Vagrantfile')
-rw-r--r-- | openbsd/Vagrantfile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/openbsd/Vagrantfile b/openbsd/Vagrantfile new file mode 100644 index 0000000..908c552 --- /dev/null +++ b/openbsd/Vagrantfile @@ -0,0 +1,46 @@ +# vi: set ft=ruby : +# frozen_string_literal: true + +ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' +MOUNT_POINT = '/home/vagrant/ff' +CPU_COUNT = 1 +MEMORY = 1024 + +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_check_update = false + config.vm.synced_folder './', MOUNT_POINT, type: 'nfs', nfs_version: 3, nfs_udp: false, disabled: true + config.vm.hostname = 'openbsd7' + config.vm.boot_timeout = 240 + 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.vm.provider 'libvirt' do |libvirt| + libvirt.default_prefix = 'openbsd7-' + libvirt.driver = 'kvm' + libvirt.nested = false + # libvirt.machine_type = 'pc-q35-3.1' + # libvirt.qemuargs value: '-object' + # libvirt.qemuargs value: 'rng-random,id=rng0,filename=/dev/urandom' + # libvirt.qemuargs value: '-device' + # libvirt.qemuargs value: 'virtio-rng-pci,rng=rng0,bus=pcie.0' + libvirt.qemuargs value: '-nographic' + libvirt.qemuargs value: '-nodefaults' + libvirt.qemuargs value: '-no-user-config' + libvirt.sound_type = nil + libvirt.cpus = CPU_COUNT + libvirt.memory = MEMORY + libvirt.random model: 'random' + libvirt.autostart = false + end + + # config.vm.provision 'provision', type: 'shell', name: 'provision', privileged: false, reboot: false, inline: <<-SHELL + # set -ex + # sudo pkg update && sudo pkg upgrade -y + # sudo pkg install -y pkgconf gcc gmake git wget curl vim tmux ncurses readline + # SHELL +end |