# File lib/thinking_sphinx/commands/stop.rb, line 4
  def call
    unless command :running
      log 'searchd is not currently running.'
      return
    end

    pid = controller.pid
    until !command :running do
      controller.stop options
      sleep(0.5)
    end

    log "Stopped searchd daemon (pid: #{pid})."
  end