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
This commit is contained in:
Eric Lippmann 2014-06-02 10:47:44 +02:00
parent 1619d682c7
commit 3a25f019c5
1 changed files with 2 additions and 2 deletions

View File

@ -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