aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant')
-rw-r--r--vagrant/debian10/Vagrantfile2
-rw-r--r--vagrant/debian9/Vagrantfile2
-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