From 2431fe73b8e88e8a5333211acf768157df338e00 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 2 Mar 2013 15:47:58 -0800 Subject: [PATCH] config.ssh.password is not used --- plugins/kernel_v1/config/ssh.rb | 1 - plugins/kernel_v2/config/ssh.rb | 1 - 2 files changed, 2 deletions(-) diff --git a/plugins/kernel_v1/config/ssh.rb b/plugins/kernel_v1/config/ssh.rb index d6fdf159f..f6eaeefa3 100644 --- a/plugins/kernel_v1/config/ssh.rb +++ b/plugins/kernel_v1/config/ssh.rb @@ -31,7 +31,6 @@ module VagrantPlugins def upgrade(new) new.ssh.username = @username if @username != UNSET_VALUE - new.ssh.password = @password if @password != UNSET_VALUE new.ssh.host = @host if @host != UNSET_VALUE new.ssh.port = @port if @port != UNSET_VALUE new.ssh.guest_port = @guest_port if @guest_port != UNSET_VALUE diff --git a/plugins/kernel_v2/config/ssh.rb b/plugins/kernel_v2/config/ssh.rb index eff0f8481..689a2ea5c 100644 --- a/plugins/kernel_v2/config/ssh.rb +++ b/plugins/kernel_v2/config/ssh.rb @@ -4,7 +4,6 @@ module VagrantPlugins module Kernel_V2 class SSHConfig < Vagrant.plugin("2", :config) attr_accessor :username - attr_accessor :password attr_accessor :host attr_accessor :port attr_accessor :guest_port