2012-04-18 05:12:27 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
2012-06-15 01:49:20 +00:00
|
|
|
module Kernel_V1
|
2012-04-18 05:12:27 +00:00
|
|
|
class SSHConfig < Vagrant::Config::V1::Base
|
|
|
|
attr_accessor :username
|
|
|
|
attr_accessor :password
|
|
|
|
attr_accessor :host
|
|
|
|
attr_accessor :port
|
|
|
|
attr_accessor :guest_port
|
|
|
|
attr_accessor :max_tries
|
|
|
|
attr_accessor :timeout
|
|
|
|
attr_accessor :private_key_path
|
|
|
|
attr_accessor :forward_agent
|
|
|
|
attr_accessor :forward_x11
|
|
|
|
attr_accessor :shell
|
|
|
|
|
|
|
|
def validate(env, errors)
|
|
|
|
[:username, :host, :max_tries, :timeout].each do |field|
|
2012-04-19 00:03:34 +00:00
|
|
|
value = instance_variable_get("@#{field}".to_sym)
|
2012-04-19 00:09:25 +00:00
|
|
|
errors.add(I18n.t("vagrant.config.common.error_empty", :field => field)) if !value
|
2012-04-18 05:12:27 +00:00
|
|
|
end
|
|
|
|
|
2012-04-19 00:09:25 +00:00
|
|
|
if private_key_path && !File.file?(File.expand_path(private_key_path, env.root_path))
|
2012-04-18 05:12:27 +00:00
|
|
|
errors.add(I18n.t("vagrant.config.ssh.private_key_missing", :path => private_key_path))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|