# File lib/pidfile.rb, line 106
  def self.pidfile_exists?(path=nil)
    path ||= File.join(DEFAULT_OPTIONS[:piddir], DEFAULT_OPTIONS[:pidfile])

    File.exists?(path)
  end