Merge pull request #5138 from dcarley/boot2docker_insert_key

Disable insert_key for boot2docker host
This commit is contained in:
Mitchell Hashimoto 2015-01-08 07:58:37 -08:00
commit 5889c9ceb1
1 changed files with 5 additions and 0 deletions

View File

@ -18,4 +18,9 @@ Vagrant.configure("2") do |config|
# b2d doesn't support NFS
config.nfs.functional = false
# b2d doesn't persist filesystem between reboots
if config.ssh.respond_to?(:insert_key)
config.ssh.insert_key = false
end
end