Skip Menu |

This queue is for tickets about the Net-SFTP-Foreign CPAN distribution.

Report information
The Basics
Id: 73176
Status: resolved
Worked: 2 hours (120 min)
Priority: 0/
Queue: Net-SFTP-Foreign

People
Owner: Nobody in particular
Requestors: kc.baufeld [...] itkollektiv.de
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Bug Report Net-SFTP-Foreign
Date: Sun, 11 Dec 2011 17:53:58 +0100
To: bug-Net-SFTP-Foreign [...] rt.cpan.org
From: Kay-Christian Baufeld <kc.baufeld [...] itkollektiv.de>
Hallo, I have the following problem with Net-SFTP-Foreign 1.69 Use of uninitialized value in setpgrp at /usr/local/share/perl/5.10.1/Net/SFTP/Foreign/Backend/Unix.pm line 299 with Version 1.67 the line was 288. used Perlversion: This is perl, v5.10.1 (*) built for i486-linux-gnu-thread-multi used Linux: Linux skript-server 2.6.32-5-686 #1 SMP Thu Nov 3 04:23:54 UTC 2011 i686 GNU/Linux The script tries to connect to an other linux server and download some files via: sudo -u bla /usr/bin/ssh name@target -s sftp The local download target folder is a mount point to an cifs volume. The connection was succesfull and the download was succesful too. what can i do? Thank you. Dear Kay-C. Baufeld
Subject: Re: [rt.cpan.org #73176] Bug Report Net-SFTP-Foreign
Date: Sun, 11 Dec 2011 12:30:22 -0800 (PST)
To: "bug-Net-SFTP-Foreign [...] rt.cpan.org" <bug-Net-SFTP-Foreign [...] rt.cpan.org>
From: Salvador Fandino <sfandino [...] yahoo.com>
Are you using the "transport" option on the contructor call? Show quoted text
>________________________________ > From: kc.baufeld via RT <bug-Net-SFTP-Foreign@rt.cpan.org> >To: >Sent: Sunday, December 11, 2011 5:54 PM >Subject: [rt.cpan.org #73176] Bug Report Net-SFTP-Foreign > >Sun Dec 11 11:54:15 2011: Request 73176 was acted upon. >Transaction: Ticket created by kc.baufeld@itkollektiv.de >      Queue: Net-SFTP-Foreign >    Subject: Bug Report Net-SFTP-Foreign >  Broken in: (no value) >    Severity: (no value) >      Owner: Nobody >  Requestors: kc.baufeld@itkollektiv.de >      Status: new >Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=73176 > > > >Hallo, > >I have the following problem with Net-SFTP-Foreign 1.69 > >  Use of uninitialized value in setpgrp at >/usr/local/share/perl/5.10.1/Net/SFTP/Foreign/Backend/Unix.pm line 299 > >with Version 1.67 the line was 288. > >used Perlversion: >  This is perl, v5.10.1 (*) built for i486-linux-gnu-thread-multi > >used Linux: >  Linux skript-server 2.6.32-5-686 #1 SMP Thu Nov 3 04:23:54 UTC 2011 >i686 GNU/Linux > > >The script tries to connect to an other linux server and download some >files via: >sudo -u bla /usr/bin/ssh name@target -s sftp > >The local download target folder is a mount point to an cifs volume. > >The connection was succesfull and the download was succesful too. > >what can i do? > >Thank you. >Dear >Kay-C. Baufeld > > > > >
Subject: Re: [rt.cpan.org #73176] Bug Report Net-SFTP-Foreign
Date: Mon, 12 Dec 2011 03:26:29 +0100
To: bug-Net-SFTP-Foreign [...] rt.cpan.org
From: Kay-Christian Baufeld <kc.baufeld [...] itkollektiv.de>
We have to change the hardware and at the older machine ist Version 1.51 installed. And yes the script uses the transport option: my $conn = undef; $conn = Expect->new; $conn->raw_pty(1); $conn->log_user(0); $conn->spawn( "$command -p $port $user" . '@' . "$host -s $type" ) ... $sftp = Net::SFTP::Foreign->new( transport => $conn ); ... Show quoted text
> Salvador "Fandiño" via RT <mailto:bug-Net-SFTP-Foreign@rt.cpan.org> > 11. Dezember 2011 21:30 > <URL: https://rt.cpan.org/Ticket/Display.html?id=73176 > > > Are you using the "transport" option on the contructor call? > > > > > > Kay-Christian Baufeld <mailto:kc.baufeld@itkollektiv.de> > 11. Dezember 2011 17:53 > Hallo, > > I have the following problem with Net-SFTP-Foreign 1.69 > > Use of uninitialized value in setpgrp at > /usr/local/share/perl/5.10.1/Net/SFTP/Foreign/Backend/Unix.pm line 299 > > with Version 1.67 the line was 288. > > used Perlversion: > This is perl, v5.10.1 (*) built for i486-linux-gnu-thread-multi > > used Linux: > Linux skript-server 2.6.32-5-686 #1 SMP Thu Nov 3 04:23:54 UTC 2011 > i686 GNU/Linux > > > The script tries to connect to an other linux server and download some > files via: > sudo -u bla /usr/bin/ssh name@target -s sftp > > The local download target folder is a mount point to an cifs volume. > > The connection was succesfull and the download was succesful too. > > what can i do? > > Thank you. > Dear > Kay-C. Baufeld
Subject: Re: [rt.cpan.org #73176] Bug Report Net-SFTP-Foreign
Date: Mon, 12 Dec 2011 01:15:14 -0800 (PST)
To: "bug-Net-SFTP-Foreign [...] rt.cpan.org" <bug-Net-SFTP-Foreign [...] rt.cpan.org>
From: Salvador Fandino <sfandino [...] yahoo.com>
This problem is now solved on version 1.70_03 that I have just uploaded to CPAN.    https://metacpan.org/release/SALVA/Net-SFTP-Foreign-1.70_03 Show quoted text
>________________________________ > From: kc.baufeld via RT <bug-Net-SFTP-Foreign@rt.cpan.org> >To: >Sent: Monday, December 12, 2011 3:26 AM >Subject: Re: [rt.cpan.org #73176] Bug Report Net-SFTP-Foreign > >      Queue: Net-SFTP-Foreign >Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=73176 > > >We have to change the hardware and at the older machine ist Version 1.51 >installed. > >And yes the script uses the transport option: > > >    my $conn = undef; >    $conn = Expect->new; >    $conn->raw_pty(1); >    $conn->log_user(0); >    $conn->spawn( >                          "$command -p $port $user" . '@' . "$host -s >$type" ) >... >      $sftp = Net::SFTP::Foreign->new( transport => $conn ); >... >
>> Salvador "Fandiño" via RT <mailto:bug-Net-SFTP-Foreign@rt.cpan.org> >> 11. Dezember 2011 21:30 >> <URL: https://rt.cpan.org/Ticket/Display.html?id=73176 > >> >> Are you using the "transport" option on the contructor call? >> >> >> >> >> >> Kay-Christian Baufeld <mailto:kc.baufeld@itkollektiv.de> >> 11. Dezember 2011 17:53 >> Hallo, >> >> I have the following problem with Net-SFTP-Foreign 1.69 >> >>  Use of uninitialized value in setpgrp at >> /usr/local/share/perl/5.10.1/Net/SFTP/Foreign/Backend/Unix.pm line 299 >> >> with Version 1.67 the line was 288. >> >> used Perlversion: >>  This is perl, v5.10.1 (*) built for i486-linux-gnu-thread-multi >> >> used Linux: >>  Linux skript-server 2.6.32-5-686 #1 SMP Thu Nov 3 04:23:54 UTC 2011 >> i686 GNU/Linux >> >> >> The script tries to connect to an other linux server and download some >> files via: >> sudo -u bla /usr/bin/ssh name@target -s sftp >> >> The local download target folder is a mount point to an cifs volume. >> >> The connection was succesfull and the download was succesful too. >> >> what can i do? >> >> Thank you. >> Dear >> Kay-C. Baufeld
> > > >We have to change the
hardware and at the older machine ist Version 1.51 installed. Show quoted text
> >And yes the script uses the transport option: > > >    my $conn = undef; >    $conn = Expect->new; >    $conn->raw_pty(1); >    $conn->log_user(0); >    $conn->spawn( >                          "$command -p $port $user" . '@' . "$host -s
$type" ) Show quoted text
>... >      $sftp = Net::SFTP::Foreign->new( transport => $conn ); >... > > >Salvador "Fandiño" via RT
>>11. Dezember 2011 21:30 >><URL: https://rt.cpan.org/Ticket/Display.html?id=73176 > >> >>Are you
using the "transport" option on the contructor call? Show quoted text
>> >> >> >> >> >> >>Kay-Christian Baufeld >>11. Dezember 2011 17:53 >>Hallo, >> >>I have the following problem with Net-SFTP-Foreign 1.69 >> >>  Use of uninitialized value in setpgrp at
/usr/local/share/perl/5.10.1/Net/SFTP/Foreign/Backend/Unix.pm line 299 Show quoted text
>> >>with Version 1.67 the line was 288. >> >>used Perlversion: >>  This is perl, v5.10.1 (*) built for i486-linux-gnu-thread-multi >> >>used Linux: >>  Linux skript-server 2.6.32-5-686 #1 SMP Thu Nov 3 04:23:54 UTC
2011 i686 GNU/Linux Show quoted text
>> >> >>The script tries to connect to an other linux server and download
some files via: Show quoted text
>>sudo -u bla /usr/bin/ssh name@target -s sftp >> >>The local download target folder is a mount point to an cifs volume. >> >>The connection was succesfull and the download was succesful too. >> >>what can i do? >> >>Thank you. >>Dear >>Kay-C. Baufeld >>
> >
Subject: Re: [rt.cpan.org #73176] Bug Report Net-SFTP-Foreign
Date: Tue, 13 Dec 2011 11:15:04 +0100
To: bug-Net-SFTP-Foreign [...] rt.cpan.org
From: Kay-Christian Baufeld <kc.baufeld [...] itkollektiv.de>
I tested with the new version. For me the Problem is solved. Show quoted text
> Salvador "Fandiño" via RT <mailto:bug-Net-SFTP-Foreign@rt.cpan.org> > 12. Dezember 2011 10:15 > <URL: https://rt.cpan.org/Ticket/Display.html?id=73176> > > This problem is now solved on version 1.70_03 that I have just uploaded to CPAN. > > https://metacpan.org/release/SALVA/Net-SFTP-Foreign-1.70_03 > >