diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2019-04-28 23:37:47 +0300 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2019-04-28 23:58:40 +0300 |
commit | 1310ba87c0f9045b9ddb96b73816e82a811d4f1b (patch) | |
tree | 044aee0fc0be3b9b46a2cf54eb2494f12d710d6b /vagrant/centos6/Vagrantfile | |
parent | 65b17173bda92a5e03f931244eca3f8afa127328 (diff) | |
download | bindfs-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/Vagrantfile | 3 |
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 |