Module: Bosh::Bootstrap::Cli::Helpers::Settings

Includes:
FileUtils
Included in:
Bosh::Bootstrap::Cli::Helpers
Defined in:
lib/bosh-bootstrap/cli/helpers/settings.rb

Instance Method Summary collapse

Instance Method Details

#migrate_old_settingsObject



59
60
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 59

def migrate_old_settings
end

#reload_settings!Object



54
55
56
57
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 54

def reload_settings!
  @settings = nil
  settings
end

#save_settings!Object

Saves current nested ReadWriteSettings into pure Hash-based YAML file Recreates accessors on ReadWriteSettings object (since something has changed)



49
50
51
52
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 49

def save_settings!
  File.open(settings_path, "w") { |f| f << settings.to_nested_hash.to_yaml }
  settings.create_accessors!
end

#setting(nested_key, value) ⇒ Object

Set a nested setting with “key1.key2.key3” notation



42
43
44
45
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 42

def setting(nested_key, value)
  settings.set(nested_key, value)
  save_settings!
end

#settingsObject



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 29

def settings
  @settings ||= begin
    unless File.exists?(settings_path)
      mkdir_p(settings_dir)
      File.open(settings_path, "w") { |file| file << "--- {}" }
    end
    chmod(0600, settings_path)
    chmod(0700, settings_ssh_dir) if File.directory?(settings_ssh_dir)
    ReadWriteSettings.new(settings_path)
  end
end

#settings_dirObject

The base directory for holding the manifest settings file and private keys

Defaults to ~/.bosh_inception; and can be overridden with either:

  • $SETTINGS - to a folder (supported method)



12
13
14
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 12

def settings_dir
  @settings_dir ||= File.expand_path(ENV["SETTINGS"] || "~/.microbosh")
end

#settings_dir=(settings_dir) ⇒ Object



16
17
18
19
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 16

def settings_dir=(settings_dir)
  @settings_dir = File.expand_path(settings_dir)
  reload_settings!
end

#settings_pathObject



25
26
27
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 25

def settings_path
  @settings_path ||= File.join(settings_dir, "settings.yml")
end

#settings_ssh_dirObject



21
22
23
# File 'lib/bosh-bootstrap/cli/helpers/settings.rb', line 21

def settings_ssh_dir
  File.join(settings_dir, "ssh")
end