Mailinglist Archive: opensuse-bugs (15136 mails)
| < Previous | Next > |
[Bug 328811] kiwi: doesn't find a pattern when ftp source is used
- From: bugzilla_noreply@xxxxxxxxxx
- Date: Thu, 27 Sep 2007 03:49:25 -0600 (MDT)
- Message-id: <20070927094925.4169CCC7AC@xxxxxxxxxxxxxxxxxxxxxx>
https://bugzilla.novell.com/show_bug.cgi?id=328811#c11
Marcus Schaefer <ms@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
Info Provider|ms@xxxxxxxxxx |jsuchome@xxxxxxxxxx
--- Comment #11 from Marcus Schaefer <ms@xxxxxxxxxx> 2007-09-27 03:49:24 MST ---
I have tested the following code on your machine:
use strict;
use LWP;
my $publics_url="ftp://10.20.3.1/netboot/find/openSUSE-10.3-RC1-DVD-i386-DVD1";
#my
$publics_url="http://cml.suse.cz/netboot/find/openSUSE-10.3-RC1-DVD-i386-DVD1";
print "start\n";
my $browser = LWP::UserAgent->new;
my $location = $publics_url."/content";
print "$location\n";
my $request = HTTP::Request->new (GET => $location);
my $response = $browser -> request ( $request );
my $content = $response -> content ();
print "stop\n";
print $content;
http works ftp doesn't. On my system here in Nuremberg both works.
Could you confirm ?
Thanks
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Marcus Schaefer <ms@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
Info Provider|ms@xxxxxxxxxx |jsuchome@xxxxxxxxxx
--- Comment #11 from Marcus Schaefer <ms@xxxxxxxxxx> 2007-09-27 03:49:24 MST ---
I have tested the following code on your machine:
use strict;
use LWP;
my $publics_url="ftp://10.20.3.1/netboot/find/openSUSE-10.3-RC1-DVD-i386-DVD1";
#my
$publics_url="http://cml.suse.cz/netboot/find/openSUSE-10.3-RC1-DVD-i386-DVD1";
print "start\n";
my $browser = LWP::UserAgent->new;
my $location = $publics_url."/content";
print "$location\n";
my $request = HTTP::Request->new (GET => $location);
my $response = $browser -> request ( $request );
my $content = $response -> content ();
print "stop\n";
print $content;
http works ftp doesn't. On my system here in Nuremberg both works.
Could you confirm ?
Thanks
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
| < Previous | Next > |