Method: VagrantPlugins::ProviderLocal::Config#initialize

Defined in:
lib/vagrant-local/config.rb

#initializeConfig

Returns a new instance of Config.

[View source]

12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/vagrant-local/config.rb', line 12

def initialize
  super
  @brand = 'aws'
  @kernel = nil
  @boxshortname = UNSET_VALUE
  @debug = nil
  @boot = UNSET_VALUE
  @box = UNSET_VALUE
  @clean_shutdown_time = 300
  @vmtype = 'production'
  @partition_id = '0000'
  @sshport = '22'
  @rdpport = '3389'
  @vagrant_user = 'vagrant'
  @vagrant_user_pass = 'vagrant'
  @vagrant_user_private_key_path = './id_rsa'
end