# File lib/daemons/monitor.rb, line 89
    def start(application_group)
      return if application_group.applications.empty?

      if @pid.kind_of?(PidFile)
        start_with_pidfile(application_group)
      else
        start_without_pidfile(application_group)
      end
    end