# File lib/rubyipmi/freeipmi/commands/bmcconfig.rb, line 43
    def listsections
      if @sections.length < 1
        @options["listsections"] = false
        value = runcmd
        @options.delete_notify("listsections")
        if value
          @sections = @result.split(/\n/)
        end
      end
      @sections
    end