aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/freebsd10_3/Vagrantfile
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2021-02-13 15:56:57 +0200
committerMartin Pärtel <martin.partel@gmail.com>2021-02-13 15:56:57 +0200
commitbc5313dc583cad9a3949bd798995ab1ee398ecf6 (patch)
tree3eef96d1b7cbb7a4e05a3ea954b1bc75231c1fd8 /vagrant/freebsd10_3/Vagrantfile
parent2cf41a75c11472bd6737b48c61f0a3d30cd6f242 (diff)
downloadbindfs-bc5313dc583cad9a3949bd798995ab1ee398ecf6.tar.gz
Refactored and unit-tested filter_special_opts. Shaved a bunch of yaks on the way.
Diffstat (limited to 'vagrant/freebsd10_3/Vagrantfile')
-rw-r--r--vagrant/freebsd10_3/Vagrantfile31
1 files changed, 0 insertions, 31 deletions
diff --git a/vagrant/freebsd10_3/Vagrantfile b/vagrant/freebsd10_3/Vagrantfile
deleted file mode 100644
index 87ba424..0000000
--- a/vagrant/freebsd10_3/Vagrantfile
+++ /dev/null
@@ -1,31 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-Vagrant.configure("2") do |config|
- #config.vm.box = "freebsd/FreeBSD-11.0-STABLE" # doesn't set base_mac so can't use NAT networking :(
- config.vm.box = "bento/freebsd-10.3"
-
- 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-freebsd10_3"
- end
-
- config.vm.provision "shell", inline: <<-SHELL
- pkg update
- pkg install -y fusefs-libs pkgconf ruby valgrind
-
- 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