diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2021-02-13 15:56:57 +0200 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2021-02-13 15:56:57 +0200 |
commit | bc5313dc583cad9a3949bd798995ab1ee398ecf6 (patch) | |
tree | 3eef96d1b7cbb7a4e05a3ea954b1bc75231c1fd8 /vagrant | |
parent | 2cf41a75c11472bd6737b48c61f0a3d30cd6f242 (diff) | |
download | bindfs-bc5313dc583cad9a3949bd798995ab1ee398ecf6.tar.gz |
Refactored and unit-tested filter_special_opts. Shaved a bunch of yaks on the way.
Diffstat (limited to 'vagrant')
-rw-r--r-- | vagrant/debian10/Vagrantfile | 2 | ||||
-rw-r--r-- | vagrant/debian9/Vagrantfile | 2 | ||||
-rw-r--r-- | vagrant/freebsd12/Vagrantfile (renamed from vagrant/freebsd10_3/Vagrantfile) | 7 |
3 files changed, 5 insertions, 6 deletions
diff --git a/vagrant/debian10/Vagrantfile b/vagrant/debian10/Vagrantfile index 3a76651..d56a8f2 100644 --- a/vagrant/debian10/Vagrantfile +++ b/vagrant/debian10/Vagrantfile @@ -16,8 +16,8 @@ Vagrant.configure("2") do |config| end config.vm.provision "shell", reboot: true, inline: <<-SHELL + export DEBIAN_FRONTEND='noninteractive' apt-get update - DEBIAN_FRONTEND='noninteractive' apt-get dist-upgrade -y -o Dpkg::Options::="--force-confdef" apt-get install -y fuse3 libfuse3-dev build-essential pkg-config ruby valgrind apt-get clean echo user_allow_other > /etc/fuse.conf diff --git a/vagrant/debian9/Vagrantfile b/vagrant/debian9/Vagrantfile index 7f681dc..3ba1138 100644 --- a/vagrant/debian9/Vagrantfile +++ b/vagrant/debian9/Vagrantfile @@ -16,8 +16,8 @@ Vagrant.configure("2") do |config| end config.vm.provision "shell", reboot: true, inline: <<-SHELL + export DEBIAN_FRONTEND='noninteractive' apt-get update - DEBIAN_FRONTEND='noninteractive' apt-get dist-upgrade -y -o Dpkg::Options::="--force-confdef" apt-get install -y fuse libfuse-dev build-essential pkg-config ruby valgrind apt-get clean echo user_allow_other > /etc/fuse.conf diff --git a/vagrant/freebsd10_3/Vagrantfile b/vagrant/freebsd12/Vagrantfile index 87ba424..213c18c 100644 --- a/vagrant/freebsd10_3/Vagrantfile +++ b/vagrant/freebsd12/Vagrantfile @@ -2,8 +2,7 @@ # 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.box = "roboxes/freebsd12" config.vm.synced_folder ".", "/vagrant", disabled: true config.vm.synced_folder "../../", "/bindfs", @@ -13,12 +12,12 @@ Vagrant.configure("2") do |config| rsync__args: ["-av", "--delete-after"] config.vm.provider "virtualbox" do |v| - v.name = "bindfs-freebsd10_3" + v.name = "bindfs-freebsd12" end config.vm.provision "shell", inline: <<-SHELL pkg update - pkg install -y fusefs-libs pkgconf ruby valgrind + pkg install -y fusefs-libs pkgconf ruby kldload fuse.ko echo 'fuse_load="YES"' >> /boot/loader.conf |