diff --git a/CHANGELOG.md b/CHANGELOG.md index b884d1beb..2ce44bf1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ BUG FIXES: - guests/funtoo: fix incorrect path in configure networks [GH-4812] - plugins/login: allow users to login with a token [GH-5145] - provisioners/ansible: fix SSH settings to support more than 5 ssh keys [GH-5017] - - provisioners/ansible: increase ansible connection timeout to 30 seconds [GH-5175] + - provisioners/ansible: increase ansible connection timeout to 30 seconds [GH-4860] ## 1.7.2 (January 6, 2015) diff --git a/plugins/provisioners/ansible/provisioner.rb b/plugins/provisioners/ansible/provisioner.rb index f4d084c6a..f5829101f 100644 --- a/plugins/provisioners/ansible/provisioner.rb +++ b/plugins/provisioners/ansible/provisioner.rb @@ -26,7 +26,7 @@ module VagrantPlugins options << "--connection=ssh" # Increase the SSH connection timeout, as the Ansible default value (10 seconds) - # is a bit demanding for some overloaded developer boxes. This is particularly + # is a bit demanding for some overloaded developer boxes. This is particularly # helpful when additioal virtual networks are configured, as their availability # is not controlled during vagrant boot process. options << "--timeout=30"