# File lib/mongrel_cluster/init.rb, line 158
    def pid_file_exists?(port)    
      pid_file = port_pid_file(port)
      exists = false
      chdir_cwd do     
        exists = File.exists?(pid_file)  
      end
      exists
    end