been using vagrant for a second, but I found a really wierd little 
quirk.  not sure what is going on and hope someone can help


running bento/centos-68, using the standard rsync 
file config.vm.synced_folder ".", "/var/www/html", :mount_options => 
["dmode=777", "fmode=666"]
when i change a file on my host machine, i can see the change on the 
virtual machine. good.
but when I pull the file from my browser the file isn't changed
I clear cache and even restart apache.  still no change
but if i reload vagrant.  it changes

VagrantFile

Vagrant.configure("2") do |config|

    config.vm.box = "bento/centos-6.8"
    config.vm.network "private_network", ip: "192.168.33.10"
    config.vm.hostname = "ladera"
    config.vm.synced_folder ".", "/var/www/html", :mount_options => 
["dmode=777", "fmode=666"]
    config.vm.provision "shell", path: "provisions/php-web-server.sh"

end

-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
--- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/055d5faf-2616-4170-a8a2-62f4f5d06795%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to