From 3a25f019c574a6c139099082191ab96c0d09276b Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Mon, 2 Jun 2014 10:47:44 +0200 Subject: [PATCH] Vagrant/finalize.sh: Remove dmode and fmode options from mount.vboxsf The dmode and fmode options seem to set the execute bit even when the mode is 775. 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 cd04ebb7a..3bc31beba 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`,dmode=775,fmode=775 /vagrant/config/ /vagrant/config/ + mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g apache` /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`,dmode=775,fmode=775 /vagrant/var/log/ /vagrant/var/log/ + mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g apache` /vagrant/var/log/ /vagrant/var/log/ } installJquery