From aef3aa07b85cb3e9340cb2d95571aebf6f2638ab Mon Sep 17 00:00:00 2001 From: Martin Pärtel Date: Sun, 12 Mar 2017 01:05:20 +0000 Subject: Added Vagrant test runner, initially running some Ubuntus and CentOSes. --- vagrant/centos7/Vagrantfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 vagrant/centos7/Vagrantfile (limited to 'vagrant/centos7') diff --git a/vagrant/centos7/Vagrantfile b/vagrant/centos7/Vagrantfile new file mode 100644 index 0000000..aa2ea0b --- /dev/null +++ b/vagrant/centos7/Vagrantfile @@ -0,0 +1,23 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure("2") do |config| + config.vm.box = "centos/7" + + 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-centos7" + end + + config.vm.provision "shell", inline: <<-SHELL + yum install -y fuse fuse-devel gcc make pkg-config ruby valgrind + usermod -G fuse -a vagrant + echo user_allow_other > /etc/fuse.conf + SHELL +end -- cgit v1.2.3