Your message dated Fri, 29 Apr 2005 11:47:06 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#304081: fixed in fsh 1.2-4
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 10 Apr 2005 18:22:34 +0000
>From [EMAIL PROTECTED] Sun Apr 10 11:22:34 2005
Return-path: <[EMAIL PROTECTED]>
Received: from dyna6-188.cs.uoregon.edu (liberty.barsoom.org) [128.223.6.188]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DKh4s-0006so-00; Sun, 10 Apr 2005 11:22:34 -0700
Received: from agthorr by liberty.barsoom.org with local (Exim 3.35 #1 (Debian))
id 1DKh4O-0000qN-00
for <[EMAIL PROTECTED]>; Sun, 10 Apr 2005 11:22:04 -0700
Date: Sun, 10 Apr 2005 11:22:04 -0700
From: Agthorr <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: fsh: incorrect parsing of [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
X-Reportbug-Version: 3.8
Sender: Daniel Stutzbach <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Package: fsh
Version: 1.2-2
Severity: normal
'fsh [EMAIL PROTECTED] echo hi' doesn't work. This is because fsh reverses
user and host. Here's a patch:
------------------------------------------------------------------------
--- fsh-orig.py Sun Apr 10 11:08:31 2005
+++ /usr/share/fsh/fsh.py Sun Apr 10 11:10:27 2005
@@ -382,8 +382,8 @@ def main():
assert 0
if host.find('@') != -1:
- login = host[host.find('@')+1:]
- host = host[:host.find('@')]
+ login = host[:host.find('@')]
+ host = host[host.find('@')+1:]
if print_version:
fshlib.print_version("fsh")
------------------------------------------------------------------------
-- System Information:
Debian Release: 3.0
APT prefers testing
APT policy: (980, 'testing'), (977, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.6liberty
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages fsh depends on:
ii python 2.3.5-1 An interactive high-level object-o
ii ssh [rsh-client] 1:3.4p1-1.woody.3 Secure rlogin/rsh/rcp replacement
-- no debconf information
--
Daniel Stutzbach Computer Science Ph.D Student
http://www.barsoom.org/~agthorr University of Oregon
---------------------------------------
Received: (at 304081-close) by bugs.debian.org; 29 Apr 2005 15:54:18 +0000
>From [EMAIL PROTECTED] Fri Apr 29 08:54:18 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DRXoo-0000OM-00; Fri, 29 Apr 2005 08:54:18 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DRXhq-0008G0-00; Fri, 29 Apr 2005 11:47:06 -0400
From: Daniel Baumann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#304081: fixed in fsh 1.2-4
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 29 Apr 2005 11:47:06 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Source: fsh
Source-Version: 1.2-4
We believe that the bug you reported is fixed in the latest version of
fsh, which is due to be installed in the Debian FTP archive:
fsh_1.2-4.diff.gz
to pool/main/f/fsh/fsh_1.2-4.diff.gz
fsh_1.2-4.dsc
to pool/main/f/fsh/fsh_1.2-4.dsc
fsh_1.2-4_i386.deb
to pool/main/f/fsh/fsh_1.2-4_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Daniel Baumann <[EMAIL PROTECTED]> (supplier of updated fsh package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sun, 10 Apr 2005 20:51:00 +0200
Source: fsh
Binary: fsh
Architecture: source i386
Version: 1.2-4
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann <[EMAIL PROTECTED]>
Changed-By: Daniel Baumann <[EMAIL PROTECTED]>
Description:
fsh - Fast remote command execution over rsh/ssh/lsh
Closes: 304081
Changes:
fsh (1.2-4) unstable; urgency=low
.
* fsh.py: fixed reverse of user and host (Closes: #304081).
Files:
d6c5c890616415bba4d7b6fe75e731ef 575 net optional fsh_1.2-4.dsc
fc8596ea0a517391fd014eaaa0f6b361 26644 net optional fsh_1.2-4.diff.gz
26f61026d1e4405b7b707cf39ecbabb3 37250 net optional fsh_1.2-4_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iEYEARECAAYFAkJyU+oACgkQELuA/Ba9d8YdewCguw9d+CFTM4e7MfqHf1/huSSM
iqMAni2aKM2jjhacj0lBDyhxXorrvQm2
=dvQW
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]