aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/freebsd12
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2024-06-05 09:06:49 +0300
committerMartin Pärtel <martin.partel@gmail.com>2024-06-05 09:06:49 +0300
commitef6e71e3f3257119811b427dd4d5729a5f93e317 (patch)
tree2cc18ff23da527c53846985e13f4297a3b421a44 /vagrant/freebsd12
parent9bd2e4223b8050da96ee78e717a9ba2473de9a60 (diff)
downloadbindfs-ef6e71e3f3257119811b427dd4d5729a5f93e317.tar.gz
FreeBSD 12 -> 14 in Vagrant tests.
Diffstat (limited to 'vagrant/freebsd12')
-rw-r--r--vagrant/freebsd12/Vagrantfile33
1 files changed, 0 insertions, 33 deletions
diff --git a/vagrant/freebsd12/Vagrantfile b/vagrant/freebsd12/Vagrantfile
deleted file mode 100644
index d48bc11..0000000
--- a/vagrant/freebsd12/Vagrantfile
+++ /dev/null
@@ -1,33 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-Vagrant.configure("2") do |config|
- config.vm.box = "roboxes/freebsd12"
-
- config.vm.synced_folder ".", "/vagrant", disabled: true
- config.vm.synced_folder "../../", "/bindfs",
- type: "rsync",
- rsync__auto: false,
- rsync__exclude: ["vagrant"],
- rsync__args: ["-av", "--delete-after"]
-
- config.vm.provider "virtualbox" do |v|
- v.name = "bindfs-freebsd12"
- end
- config.vm.provider "libvirt" do |v|
- v.driver = if File.exist?('/dev/kvm') then 'kvm' else 'qemu' end
- end
-
- config.vm.provision "shell", inline: <<-SHELL
- pkg update
- pkg install -y fusefs-libs pkgconf ruby
-
- kldload fuse.ko
- echo 'fuse_load="YES"' >> /boot/loader.conf
-
- sysctl vfs.usermount=1
- echo vfs.usermount=1 >> /etc/sysctl.conf
-
- pw groupmod operator -m vagrant # For access to /dev/fuse
- SHELL
-end