Does anyone know if it's possible to have "one way" replication set up between the host shared folder and the synced folder on the guest VM?
What I mean is, suppose that you have an Ubuntu guest VM that has the folder /etc which has been configured to sync with the host folder D:\Vagrant\Test\Application\etc. On the host I have a single .ini file that I would like to be able to easily edit and, of course, that gets synced onto the guest. The problem is of course, that as soon as vagrant loads up the guest VM in the environment and then sets up the synced folder with the host, all of the existing files in the /etc/ folder on the guest are deleted, because they don't reside on the host.
Ideally what I'd like to achieve is to have all the existing files on the guest remain in the /etc/ folder, but have the host files residing in D:\Vagrant\Test\Application\etc to be synced (Host > Guest)
Does anyone know if this is possible?