aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/bionic64/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant/bionic64/Vagrantfile')
-rw-r--r--vagrant/bionic64/Vagrantfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/vagrant/bionic64/Vagrantfile b/vagrant/bionic64/Vagrantfile
new file mode 100644
index 0000000..aab9518
--- /dev/null
+++ b/vagrant/bionic64/Vagrantfile
@@ -0,0 +1,25 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+Vagrant.configure("2") do |config|
+ config.vm.box = "ubuntu/bionic64"
+
+ 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-bionic64"
+ end
+
+ config.vm.provision "shell", inline: <<-SHELL
+ apt-get update
+ apt-get install -y fuse libfuse-dev build-essential pkg-config ruby valgrind
+ apt-get clean
+ adduser vagrant fuse
+ echo user_allow_other > /etc/fuse.conf
+ SHELL
+end