In order to bundle
and connect to Github as my normal self within my VM, I'd like to config.vm.share_folder "ssh", "/home/vagrant/.ssh", "~/.ssh"
.
Except this breaks vagrant's public/private key authentication.
Attempted Solution #1
I tried to copy my public key to also be authorized_keys
. Same behavior; I need to enter a password to vagrant ssh
.
Attempted Solution #2
Copy the public key to authorized_keys
, but also set config.ssh.private_key_path = "~/.ssh/id_dsa"
. This just screwed everything up, though.