]> git.pld-linux.org Git - packages/vagrant.git/blob - insert-key.patch
typo
[packages/vagrant.git] / insert-key.patch
1 disable insert_key=true by default
2
3 https://github.com/mitchellh/vagrant/issues/2608
4
5 --- vagrant-1.7.1/plugins/kernel_v2/config/ssh_connect.rb~      2014-12-12 11:36:39.000000000 +0200
6 +++ vagrant-1.7.1/plugins/kernel_v2/config/ssh_connect.rb       2015-02-01 20:47:27.907465716 +0200
7 @@ -23,7 +23,7 @@
8          @private_key_path = nil if @private_key_path == UNSET_VALUE
9          @username         = nil if @username == UNSET_VALUE
10          @password         = nil if @password == UNSET_VALUE
11 -        @insert_key       = true if @insert_key == UNSET_VALUE
12 +        @insert_key       = false if @insert_key == UNSET_VALUE
13  
14          if @private_key_path && !@private_key_path.is_a?(Array)
15            @private_key_path = [@private_key_path]
This page took 0.177435 seconds and 3 git commands to generate.