aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant')
-rw-r--r--vagrant/centos6/Vagrantfile24
1 files changed, 0 insertions, 24 deletions
diff --git a/vagrant/centos6/Vagrantfile b/vagrant/centos6/Vagrantfile
deleted file mode 100644
index ae291fe..0000000
--- a/vagrant/centos6/Vagrantfile
+++ /dev/null
@@ -1,24 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-Vagrant.configure("2") do |config|
- config.vm.box = "centos/6"
-
- 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-centos6"
- end
-
- # Don't install valgrind here since it appears to be broken (2019-04-28)
- config.vm.provision "shell", inline: <<-SHELL
- yum install -y fuse fuse-devel gcc make pkg-config ruby
- usermod -G fuse -a vagrant
- echo user_allow_other > /etc/fuse.conf
- SHELL
-end