When doing vagrant up
a "shell" provision download some files into the synced folder. Those files should be also copied to the host machine synced folder, so that the project would be available from the host. When using the NFS to sync, this is done automatically, but not with rsync. Is there any way to achieve this using rsync with Vagrant? This is the synced folder configuration:
config.vm.synced_folder "./", "/vagrant", type: "rsync", owner: "www-data",
rsync__exclude: [".git", "project1/app/cache", "project1/app/logs"],
rsync__args: ["--no-owner", "--verbose", "--archive", "-z", "--copy-links"]