From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 19 13:20:24 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ECE016A41F for ; Wed, 19 Oct 2005 13:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDA1D43D5A for ; Wed, 19 Oct 2005 13:20:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9JDKIw8085391 for ; Wed, 19 Oct 2005 13:20:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9JDKIJN085390; Wed, 19 Oct 2005 13:20:18 GMT (envelope-from gnats) Resent-Date: Wed, 19 Oct 2005 13:20:18 GMT Resent-Message-Id: <200510191320.j9JDKIJN085390@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Frank Laszlo Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B647B16A420 for ; Wed, 19 Oct 2005 13:15:43 +0000 (GMT) (envelope-from laszlof@ritamari.vonostingroup.com) Received: from ritamari.vonostingroup.com (ritamari.vonostingroup.com [216.144.193.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B90943D7E for ; Wed, 19 Oct 2005 13:15:36 +0000 (GMT) (envelope-from laszlof@ritamari.vonostingroup.com) Received: from laszlof by ritamari.vonostingroup.com with local (Exim 4.54 (FreeBSD)) id 1ESDn8-000FGe-L6 for FreeBSD-gnats-submit@freebsd.org; Wed, 19 Oct 2005 09:15:38 -0400 Message-Id: Date: Wed, 19 Oct 2005 09:15:38 -0400 From: Frank Laszlo To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/87664: [UPDATE]: security/mussh: Update to version 0.6. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Frank Laszlo List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Oct 2005 13:20:24 -0000 >Number: 87664 >Category: ports >Synopsis: [UPDATE]: security/mussh: Update to version 0.6. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Oct 19 13:20:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Frank Laszlo >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD ritamari.vonostingroup.com 5.4-STABLE FreeBSD 5.4-STABLE #0: Thu Jun 9 22:20:56 EDT 2005 laszlof@ritamari.vonostingroup.com:/usr/obj/usr/src/sys/RITAMARI i386 >Description: This patch will update security/mussh to version 0.8. This version adds the following features: - added '-s' to ssh-agent calls so that they will work for people with non-bash shells. (thanks to Jacob) - Asynchronous mode works. - Asynchronous mode required temp files so we use mktemp to make it safer. - Blocking option in async mode. - All debug messages go to STDERR. - Invoke remote shell (default bash) explicitely. - SIGQUIT (ctrl-\) prints current/remaining host(s). - Modernized all ``'s to $()'s. I'll take maintainership. >How-To-Repeat: >Fix: --- mussh-0.6.diff begins here --- diff -rU3 mussh.orig/Makefile mussh/Makefile --- mussh.orig/Makefile Wed Oct 19 09:03:47 2005 +++ mussh/Makefile Wed Oct 19 09:09:30 2005 @@ -6,13 +6,13 @@ # PORTNAME= mussh -PORTVERSION= 0.5 +PORTVERSION= 0.6 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= laszlof@vonostingroup.com COMMENT= A tool for easily running the same commands on multiple hosts RUN_DEPENDS= bash:${PORTSDIR}/shells/bash2 @@ -21,9 +21,10 @@ USE_REINPLACE= yes PORTDOCS= BUGS CHANGES EXAMPLES README PLIST_FILES= bin/mussh +WRKSRC= ${WRKDIR}/${PORTNAME} post-patch: - @${REINPLACE_CMD} -e "s,^#!/bin/bash,#!${LOCALBASE}/bin/bash,g" \ + @${REINPLACE_CMD} -e "s,^#!/bin/bash,#!/usr/bin/env bash,g" \ ${WRKSRC}/${PORTNAME} do-install: diff -rU3 mussh.orig/distinfo mussh/distinfo --- mussh.orig/distinfo Wed Oct 19 09:03:47 2005 +++ mussh/distinfo Wed Oct 19 09:04:23 2005 @@ -1,2 +1,2 @@ -MD5 (mussh-0.5.tgz) = b87aae3007a994b829afc2bd27beb7ce -SIZE (mussh-0.5.tgz) = 6972 +MD5 (mussh-0.6.tgz) = d25b2683c6128e97e01ce1278027deb3 +SIZE (mussh-0.6.tgz) = 9123 --- mussh-0.6.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: