Method: Puppet::Settings::IniFile#settings_exist_in_default_section?
- Defined in:
- lib/puppet/settings/ini_file.rb
#settings_exist_in_default_section? ⇒ Boolean
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.
90 91 92 |
# File 'lib/puppet/settings/ini_file.rb', line 90 def settings_exist_in_default_section? lines_in(DEFAULT_SECTION_NAME).any? { |line| line.is_a?(SettingLine) } end |