Sha256: 9dbb405cb4d72b1ce0ea88c25e2eb5cbc931e05589e2b789f76749a92d38048f

Contents?: true

Size: 962 Bytes

Versions: 8

Compression:

Stored size: 962 Bytes

Contents

module Vagrant
  class Config
    class SSHConfig < Base
      configures :ssh

      attr_accessor :username
      attr_accessor :host
      attr_accessor :forwarded_port_key
      attr_accessor :max_tries
      attr_accessor :timeout
      attr_writer :private_key_path
      attr_accessor :forward_agent
      attr_accessor :forward_x11
      attr_accessor :sudo_shell

      def initialize
        @sudo_shell = "bash"
      end

      def private_key_path
        File.expand_path(@private_key_path, env.root_path)
      end

      def validate(errors)
        [:username, :host, :forwarded_port_key, :max_tries, :timeout, :private_key_path].each do |field|
          errors.add(I18n.t("vagrant.config.common.error_empty", :field => field)) if !instance_variable_get("@#{field}".to_sym)
        end

        errors.add(I18n.t("vagrant.config.ssh.private_key_missing", :path => private_key_path)) if !File.file?(private_key_path)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 4 rubygems

Version Path
vagrantup-0.7.4 lib/vagrant/config/ssh.rb
vagrantup-0.7.3 lib/vagrant/config/ssh.rb
vagrantup-0.7.2 lib/vagrant/config/ssh.rb
vagrant-0.7.4 lib/vagrant/config/ssh.rb
fixed-vagrant-0.7.4.dev lib/vagrant/config/ssh.rb
vagrant-0.7.3 lib/vagrant/config/ssh.rb
nixme-vagrant-0.7.2 lib/vagrant/config/ssh.rb
vagrant-0.7.2 lib/vagrant/config/ssh.rb