# File lib/puppet/util/settings.rb, line 440
440:   def sectionlist
441:     sectionlist = []
442:     self.each { |name, obj|
443:       section = obj.section || "puppet"
444:       sections[section] ||= []
445:       sectionlist << section unless sectionlist.include?(section)
446:       sections[section] << obj
447:     }
448: 
449:     return sectionlist, sections
450:   end