Method: Puppet::Settings::FileSetting::Service#value

Defined in:
lib/puppet/settings/file_setting.rb

#valueObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



44
45
46
47
48
49
50
# File 'lib/puppet/settings/file_setting.rb', line 44

def value
  if safe_to_use_settings_value?
    @settings[@name]
  else
    @fallback
  end
end