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