aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/centos6/Vagrantfile
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2019-04-28 23:37:47 +0300
committerMartin Pärtel <martin.partel@gmail.com>2019-04-28 23:58:40 +0300
commit1310ba87c0f9045b9ddb96b73816e82a811d4f1b (patch)
tree044aee0fc0be3b9b46a2cf54eb2494f12d710d6b /vagrant/centos6/Vagrantfile
parent65b17173bda92a5e03f931244eca3f8afa127328 (diff)
downloadbindfs-1310ba87c0f9045b9ddb96b73816e82a811d4f1b.tar.gz
Fixed vagrant tests. Removed Vagrant test for Ubuntu 12.04, added 18.04.
Diffstat (limited to 'vagrant/centos6/Vagrantfile')
-rw-r--r--vagrant/centos6/Vagrantfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/vagrant/centos6/Vagrantfile b/vagrant/centos6/Vagrantfile
index 7ad975e..ae291fe 100644
--- a/vagrant/centos6/Vagrantfile
+++ b/vagrant/centos6/Vagrantfile
@@ -15,8 +15,9 @@ Vagrant.configure("2") do |config|
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 valgrind
+ yum install -y fuse fuse-devel gcc make pkg-config ruby
usermod -G fuse -a vagrant
echo user_allow_other > /etc/fuse.conf
SHELL