Sha256: f60e541ff73ee814b020cd5cd2d9ec7b9c901ebc6db6ad6113bf3317c7a068b2

Contents?: true

Size: 437 Bytes

Versions: 15

Compression:

Stored size: 437 Bytes

Contents

require 'vagrant-skytap/properties'

module VagrantPlugins
  module Skytap
    class VmProperties < Properties
      def self.filename
        'vm'
      end

      def ssh_info
        return {} unless properties

        @ssh_info ||= {
          username: properties['username'],
          password: properties['password'],
          host: properties['host'],
          port: properties['port'],
        }
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
vagrant-skytap-0.2.3 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.2.2 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.2.1 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.2.0 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.11 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.10 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.9 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.8 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.7 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.6 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.5 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.4 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.3 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.2 lib/vagrant-skytap/vm_properties.rb
vagrant-skytap-0.1.1a lib/vagrant-skytap/vm_properties.rb