From 705336a7b66409ed4272bf8c9aadff1165285232 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 26 Mar 2022 22:44:18 +0100 Subject: [PATCH] vagrant: use generic/freebsd13, FUSE fixes also: some stuff has pkg-config support now, remove env vars. --- Vagrantfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 6db92eaa0..e46b18c5d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -57,7 +57,7 @@ def packages_freebsd # make FUSE work echo 'fuse_load="YES"' >> /boot/loader.conf echo 'vfs.usermount=1' >> /etc/sysctl.conf - kldload fuse + kldload fusefs sysctl vfs.usermount=1 pw groupmod operator -M vagrant # /dev/fuse has group operator @@ -66,8 +66,6 @@ def packages_freebsd pkg update yes | pkg upgrade echo 'export BORG_OPENSSL_PREFIX=/usr' >> ~vagrant/.bash_profile - echo 'export BORG_LIBXXHASH_PREFIX=/usr/local' >> ~vagrant/.bash_profile - echo 'export BORG_LIBDEFLATE_PREFIX=/usr/local' >> ~vagrant/.bash_profile EOF end @@ -320,7 +318,7 @@ Vagrant.configure(2) do |config| end config.vm.define "freebsd64" do |b| - b.vm.box = "freebsd121-64" + b.vm.box = "generic/freebsd13" b.vm.provider :virtualbox do |v| v.memory = 1024 + $wmem end