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:
parent
1619d682c7
commit
3a25f019c5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue