config.ssh.password is not used

This commit is contained in:
Mitchell Hashimoto 2013-03-02 15:47:58 -08:00
parent 0bb57fbe86
commit 2431fe73b8
2 changed files with 0 additions and 2 deletions

View File

@ -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

View File

@ -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