aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/centos6
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2021-01-30 14:42:33 +0200
committerMartin Pärtel <martin.partel@gmail.com>2021-01-30 14:42:33 +0200
commitabec828272e37e4768f7a48a469e213dd270d358 (patch)
treec63f3077e41afa1aa162b22ca6df58d0b7b842ab /vagrant/centos6
parent591b5217af5537b1c0550643d42f446423c4618c (diff)
downloadbindfs-abec828272e37e4768f7a48a469e213dd270d358.tar.gz
Removed vagrantfile for CentOS 6 (EOL).
The CentOS 6 YUM repo seems to no longer be up.
Diffstat (limited to 'vagrant/centos6')
-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