Vagrant: Fix failing mount "./pub" running `vagrant up` for the first time

User apache and group apache is only available after provisioning.
Mounting shared folders happens before. Thus :owner and :group
settings removed.

refs #4231
This commit is contained in:
Eric Lippmann 2013-06-03 15:18:26 +02:00
parent 51c7d697db
commit ed3127a223
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -47,7 +47,7 @@ Vagrant::Config.run do |config|
# Share an additional folder to the guest VM. The first argument is
# an identifier, the second is the path on the guest to mount the
# folder, and the third is the path on the host to the actual folder.
config.vm.share_folder "v-icinga2-web-pub", "/var/www/html/icinga2-web", "./pub", :owner => "apache", :group => "apache"
config.vm.share_folder "v-icinga2-web-pub", "/var/www/html/icinga2-web", "./pub"
# Enable provisioning with Puppet stand alone. Puppet manifests
# are contained in a directory path relative to this Vagrantfile.