aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/centos8/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant/centos8/Vagrantfile')
-rw-r--r--vagrant/centos8/Vagrantfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/vagrant/centos8/Vagrantfile b/vagrant/centos8/Vagrantfile
new file mode 100644
index 0000000..3676bc2
--- /dev/null
+++ b/vagrant/centos8/Vagrantfile
@@ -0,0 +1,22 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+Vagrant.configure("2") do |config|
+ config.vm.box = "centos/8"
+
+ 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-centos8"
+ end
+
+ config.vm.provision "shell", inline: <<-SHELL
+ yum install -y fuse fuse-devel gcc make pkg-config ruby valgrind
+ echo user_allow_other > /etc/fuse.conf
+ SHELL
+end