diff options
author | garga <garga@FreeBSD.org> | 2005-10-19 15:01:26 +0000 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2005-10-19 15:01:26 +0000 |
commit | 3a91722fda215600c9f66fda819c9cb4a59d17b3 (patch) | |
tree | e07211efb33f7483f88b8fcc8664f640a0dedfec /security/mussh | |
parent | 0cd9638c0d7b2eedd10230c8a749b6750604b337 (diff) | |
download | FreeBSD-ports-3a91722fda215600c9f66fda819c9cb4a59d17b3.zip FreeBSD-ports-3a91722fda215600c9f66fda819c9cb4a59d17b3.tar.gz |
- Update to 0.6
- Pass maintainership to submitter
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.
PR: ports/87664
Submitted by: Frank Laszlo <laszlof@vonostingroup.com>
Diffstat (limited to 'security/mussh')
-rw-r--r-- | security/mussh/Makefile | 7 | ||||
-rw-r--r-- | security/mussh/distinfo | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/security/mussh/Makefile b/security/mussh/Makefile index e703934..a57c88e79 100644 --- a/security/mussh/Makefile +++ b/security/mussh/Makefile @@ -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 @@ NO_BUILD= yes 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 --git a/security/mussh/distinfo b/security/mussh/distinfo index affc721..4aafbc6 100644 --- a/security/mussh/distinfo +++ b/security/mussh/distinfo @@ -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 |