From 473d986dfb01b988cbc252e196ae3b6b11d1d54e Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Mon, 2 Jun 2014 18:07:18 +0200 Subject: [PATCH] Revert "Vagrant/finalize.sh: Remove dmode and fmode options from mount.vboxsf" This reverts commit 3a25f019c574a6c139099082191ab96c0d09276b. The "wrong" permissions do of course come from fmode=775 rather than dmode=775. I'm just blind. refs #5982 --- .vagrant-puppet/manifests/finalize.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vagrant-puppet/manifests/finalize.sh b/.vagrant-puppet/manifests/finalize.sh index 3bc31beba..cd04ebb7a 100644 --- a/.vagrant-puppet/manifests/finalize.sh +++ b/.vagrant-puppet/manifests/finalize.sh @@ -12,7 +12,7 @@ installJquery () { mountIcinga2webConfd () { # Remount /vagrant/config/ with appropriate permissions since the group apache is missing initially - mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g apache` /vagrant/config/ /vagrant/config/ + mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g apache`,dmode=775,fmode=775 /vagrant/config/ /vagrant/config/ } startServicesWithNonLSBCompliantExitStatusCodes () { @@ -23,7 +23,7 @@ startServicesWithNonLSBCompliantExitStatusCodes () { mountIcinga2webVarLog () { # Remount /vagrant/var/log/ with appropriate permissions since the group apache is missing initially - mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g apache` /vagrant/var/log/ /vagrant/var/log/ + mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g apache`,dmode=775,fmode=775 /vagrant/var/log/ /vagrant/var/log/ } installJquery