I've been playing around with setting up an environment using Vagrant, and I'm having an issue with the vagrant ssh
command.
When I change the path of the mounted share folder in the Vagrantfile, and do a vagrant reload
, I'm no longer able to vagrant ssh
without it asking me for a password.
This was my original configuration for a mounted share, which works:
config.vm.synced_folder "./", "/home/vagrant/shared"
This is what I was trying to change to and it doesn't work after vagrant reload
(asks me for password):
config.vm.synced_folder "./", "/home/vagrant"
Everything else in the file remained unchanged. Any idea what's going on here?