From 886906f6abe1c3b92bd38de49cdb5abda3c62115 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Thu, 6 Jun 2024 10:33:39 -0400 Subject: updates --- freebsd13/Vagrantfile | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'freebsd13/Vagrantfile') diff --git a/freebsd13/Vagrantfile b/freebsd13/Vagrantfile index 3105c68..ab93d0c 100644 --- a/freebsd13/Vagrantfile +++ b/freebsd13/Vagrantfile @@ -3,22 +3,20 @@ ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' MOUNT_POINT = '/home/vagrant/ff' -CPU_COUNT = 1 -MEMORY = 1024 +CPU_COUNT = 2 +MEMORY = 512 Vagrant.require_version '>= 2.2.6' Vagrant.configure('2') do |config| - config.vm.box = 'generic/freebsd13' - config.vm.box_version = '3.6.6' + config.vm.box = 'generic/freebsd14' + config.vm.box_version = '4.3.12' config.vm.box_check_update = false config.vm.synced_folder './', MOUNT_POINT, type: 'nfs', nfs_version: 4, nfs_udp: false config.vm.hostname = 'freebsd13' config.vm.boot_timeout = 240 config.vm.graceful_halt_timeout = 45 - # confit.vm.network "private_network", ip: "192.168.33.10" - # 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 'virtualbox' do |vb| vb.cpus = CPU_COUNT @@ -26,10 +24,9 @@ Vagrant.configure('2') do |config| vb.memory = MEMORY.to_s end config.vm.provider 'libvirt' do |libvirt| - libvirt.default_prefix = 'freebsd13-' + libvirt.default_prefix = 'freebsd14-' 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' @@ -37,13 +34,13 @@ Vagrant.configure('2') do |config| libvirt.qemuargs value: '-nographic' libvirt.qemuargs value: '-nodefaults' libvirt.qemuargs value: '-no-user-config' + libvirt.qemuargs value: '-serial' + libvirt.qemuargs value: 'pty' libvirt.sound_type = nil libvirt.cpus = CPU_COUNT libvirt.memory = MEMORY libvirt.random model: 'random' libvirt.autostart = false - # libvirt.features = %w[acpi apic] - # libvirt.disk_driver cache: 'writeback', io: nil, copy_on_read: 'on', discard: nil, detect_zeroes: nil end config.vm.provision 'provision', type: 'shell', name: 'provision', privileged: false, reboot: false, inline: <<-SHELL -- cgit v1.2.3