From owner-cvs-all@FreeBSD.ORG Fri Jul 6 20:30:24 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B21ED16A468; Fri, 6 Jul 2007 20:30:24 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A1ED013C447; Fri, 6 Jul 2007 20:30:24 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l66KUOjN062881; Fri, 6 Jul 2007 20:30:24 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l66KUOKT062879; Fri, 6 Jul 2007 20:30:24 GMT (envelope-from brooks) Message-Id: <200707062030.l66KUOKT062879@repoman.freebsd.org> From: Brooks Davis Date: Fri, 6 Jul 2007 20:30:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/pssh Makefile ports/security/pssh/files patch-bin_pnuke patch-bin_prsync patch-bin_pscp patch-bin_pslurp patch-bin_pssh patch-psshlib_basethread.py patch-psshlib_psshutil.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 20:30:24 -0000 brooks 2007-07-06 20:30:24 UTC FreeBSD ports repository Modified files: security/pssh Makefile Added files: security/pssh/files patch-bin_pnuke patch-bin_prsync patch-bin_pscp patch-bin_pslurp patch-bin_pssh patch-psshlib_basethread.py patch-psshlib_psshutil.py Log: Fix a couple bugs and remove the IGNORE variable: - select can be interrupted and return EINTR so we need to loop around it while it does so rather than treating it as a fatal error. - all process creations are matched with a wait() so having a SIGCHLD handler that performs a wait(-1) is pointless and racy. We tend to loose the race over half the time and as a result were reporting successful processes as failed. Add a couple features: - Skip commented lines in the host specification. - Allow '-' as an alias for stdin in the host file specification. Revision Changes Path 1.3 +1 -2 ports/security/pssh/Makefile 1.1 +19 -0 ports/security/pssh/files/patch-bin_pnuke (new) 1.1 +18 -0 ports/security/pssh/files/patch-bin_prsync (new) 1.1 +18 -0 ports/security/pssh/files/patch-bin_pscp (new) 1.1 +18 -0 ports/security/pssh/files/patch-bin_pslurp (new) 1.1 +19 -0 ports/security/pssh/files/patch-bin_pssh (new) 1.1 +28 -0 ports/security/pssh/files/patch-psshlib_basethread.py (new) 1.1 +43 -0 ports/security/pssh/files/patch-psshlib_psshutil.py (new)