summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-07-20 09:18:51 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-07-20 09:18:51 +0000
commit7b37b87982e2e55fcd18dfdf116f46bbc4a0b833 (patch)
tree4eee320e6b41d89087fa2d44f800cd2b4910cb30
parentad8d038c7c5997abe53ee02c3b7517f0c8b7e2d0 (diff)
downloaddrakx-7b37b87982e2e55fcd18dfdf116f46bbc4a0b833.tar
drakx-7b37b87982e2e55fcd18dfdf116f46bbc4a0b833.tar.gz
drakx-7b37b87982e2e55fcd18dfdf116f46bbc4a0b833.tar.bz2
drakx-7b37b87982e2e55fcd18dfdf116f46bbc4a0b833.tar.xz
drakx-7b37b87982e2e55fcd18dfdf116f46bbc4a0b833.zip
put help out of the radiobutton
-rwxr-xr-xperl-install/standalone/drakauth4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakauth b/perl-install/standalone/drakauth
index c48792ad9..9006d01a6 100755
--- a/perl-install/standalone/drakauth
+++ b/perl-install/standalone/drakauth
@@ -21,9 +21,9 @@ my $authentication = {}; # TODO
my $kind = authentication::to_kind($authentication);
main:
-$in->ask_from('', '',
+$in->ask_from(N("Authentication"), join('', map { authentication::kind2description($_) } authentication::kinds()),
[
- { label => N("Authentication"), val => \$kind, type => 'list' , list => [ authentication::kinds() ], format => \&authentication::kind2description },
+ { label => N("Authentication"), val => \$kind, type => 'list' , list => [ authentication::kinds() ] },
]) or $in->exit;
authentication::ask_parameters($in, $netc, $authentication, $kind) or goto main;
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
package crypto; # $Id$

use diagnostics;
use strict;

use vars qw(%url2land %land2tzs %static_mirrors %mirrors);

use MDK::Common::System;
use common;
use log;
use ftp;

%url2land = (
	     at => N("Austria"),
	     be => N("Belgium"),
	     ch => N("Switzerland"),
	     cr => N("Costa Rica"),
	     cz => N("Czech Republic"),
	     de => N("Germany"),
	     fr => N("France"),
	     gr => N("Greece"),
	     hu => N("Hungary"),
	     it => N("Italy"),
	     nl => N("Netherlands"),
	     no => N("Norway"),
	     pl => N("Poland"),
	     se => N("Sweden"),
	     sk => N("Slovakia"),
	     tw => N("Taiwan"),
	    );

%land2tzs = (
	     N("France") => [ 'Europe/Paris', 'Europe/Brussels', 'Europe/Berlin' ],
	     N("Belgium") => [ 'Europe/Brussels', 'Europe/Paris', 'Europe/Berlin' ],
	     N("Czech Republic") => [ 'Europe/Prague', 'Europe/Berlin' ],
	     N("Germany") => [ 'Europe/Berlin', 'Europe/Prague' ],
	     N("Greece") => [ 'Europe/Athens', 'Europe/Prague' ],
	     N("Norway") => [ 'Europe/Oslo', 'Europe/Stockholm' ],
	     N("Sweden") => [ 'Europe/Stockholm', 'Europe/Oslo' ],
	     N("United States") => [ 'America/New_York', 'Canada/Atlantic', 'Asia/Tokyo', 'Australia/Sydney', 'Europe/Paris' ],
	     N("Netherlands") => [ 'Europe/Amsterdam', 'Europe/Brussels', 'Europe/Berlin' ],
	     N("Italy") => [ 'Europe/Rome', 'Europe/Brussels', 'Europe/Paris' ],
	     N("Austria") => [ 'Europe/Vienna', 'Europe/Brussels', 'Europe/Berlin' ],
	    );

%static_mirrors = (
#		   "ackbar" => [ "Ackbar", "/updates", "a", "a" ],
		  );

%mirrors = ();

sub mirror2text { $mirrors{$_[0]} && $mirrors{$_[0]}[0] . '|' . $_[0] }
sub mirrors {
    my ($o_distro_type, $o_use_local_list) = @_;

    unless (keys %mirrors) {
	my $f;
	if ($o_use_local_list) {
	    $f = \*DATA;
	} else {
	    #- contact the following URL to retrieve the list of mirrors.
	    #- http://www.linux-mandrake.com/mirrorsfull.list
	    require http;
	    $f = http::getFile("http://www.linux-mandrake.com/mirrorsfull.list");
	}

	local $SIG{ALRM} = sub { die "timeout" };
	$o_use_local_list or alarm 60;
	my $distro_type = $o_distro_type || 'updates';
	my $sub_dir = $distro_type =~ /cooker|community/ ? '' : '/' . version() . '/main_updates';
	foreach (<$f>) {
	    my ($arch, $url, $dir) = m|$distro_type([^:]*):ftp://([^/]*)(/\S*)| or next;
	    MDK::Common::System::compat_arch($arch) or
		log::l("ignoring updates from $url because of incompatible arch: $arch"), next;
	    my $land = N("United States");
	    foreach (keys %url2land) {
		my $qu = quotemeta $_;
		$url =~ /\.$qu(?:\..*)?$/ and $land = $url2land{$_};
	    }
	    $mirrors{$url} = [ $land, $dir . $sub_dir ];
	}
	unless ($o_use_local_list) {
	    http::getFile('/XXX'); #- close connection.
	    alarm 0; 
	}

	#- now add static mirror (in case of something wrong happened above).
	add2hash(\%mirrors, \%static_mirrors);
    }
    keys %mirrors;
}

sub bestMirror {
    my ($string, $o_distro_type) = @_;
    my %mirror2value;

    foreach my $url (mirrors($o_distro_type)) {
	my $value = 0;
	my $cvalue = mirrors($o_distro_type);

	$mirror2value{$url} ||= 1 + $cvalue;
	foreach (@{$land2tzs{$mirrors{$url}[0]} || []}) {
	    $_ eq $string and $mirror2value{$url} > $value and $mirror2value{$url} = $value;
	    (split '/')[0] eq (split '/', $string)[0] and $mirror2value{$url} > $cvalue and $mirror2value{$url} = $cvalue;
	    ++$value;
	}
    }
    my $min_value = min(values %mirror2value);

    my @possible = (grep { $mirror2value{$_} == $min_value } keys %mirror2value) x 2; #- increase probability
    push @possible, grep { $mirror2value{$_} == 1 + $min_value } keys %mirror2value;

    $possible[rand @possible];
}

#- hack to retrieve Mandrakelinux version...
sub version() {
    require pkgs;
    my $pkg = pkgs::packageByName($::o->{packages}, 'mandrakelinux-release');
    $pkg && $pkg->version || '9.1'; #- safe but dangerous ;-)
}

sub dir { $mirrors{$_[0]}[1] }
sub ftp($) { ftp::new($_[0], dir($_[0])) }

sub getFile {
    my ($file, $o_host) = @_;
    my $host = $o_host || $crypto::host;
    my $dir = dir($host);
    log::l("getting crypto file $file on directory $dir with login $mirrors{$host}[2]");
    my ($ftp, $retr) = ftp::new($host, $dir,
				if_($mirrors{$host}[2], $mirrors{$host}[2]),
				if_($mirrors{$host}[3], $mirrors{$host}[3])
			       );
    $$retr->close if $$retr;
    $$retr   = $ftp->retr($file) or ftp::rewindGetFile();
    $$retr ||= $ftp->retr($file);
}

sub getPackages {
    my ($packages, $mirror) = @_;

    $crypto::host = $mirror;

    #- get pubkey file first as we cannot handle 2 files opened simultaneously.
    my $pubkey;
    eval {
	my $fpubkey = getFile("media_info/pubkey", $mirror);
	$pubkey = [ $packages->parse_armored_file($fpubkey) ];
    };

    #- check first if there is something to get...
    my $fhdlist = getFile("media_info/hdlist.cz", $mirror);
    unless ($fhdlist) {
	log::l("no updates available, bailing out");
	return;
    }
    
    #- extract hdlist of crypto, then depslist.
    require pkgs;
    my $update_medium = pkgs::psUsingHdlist('ftp', $packages, "hdlist-updates.cz", "1u", "",
					    "Updates for Mandrakelinux " . version(), 1, $fhdlist, $pubkey);
    if ($update_medium) {
	log::l("read updates hdlist");
	#- keep in mind where is the URL prefix used according to mirror (for install_any::install_urpmi).
	$update_medium->{prefix} = "ftp://$mirror" . dir($mirror);
	#- (re-)enable the medium to allow install of package,
	#- make it an update medium (for install_any::install_urpmi).
	$update_medium->{selected} = 1;
	$update_medium->{update} = 1;

	#- search for packages to update.
	$packages->{rpmdb} ||= pkgs::rpmDbOpen();
	pkgs::selectPackagesToUpgrade($packages, $update_medium);
    }
    return $update_medium;
}

sub get {
    my ($mirror, $dir, @files) = @_;
    foreach (@files) {
	log::l("crypto: downloading $_");
	ftp($mirror)->get($_, "$dir/$_"); 
    }
    int @files;
}

1;

#- mirror list, hardcoded here to be used in mini-cds (ftp suppl. media)
__DATA__
communityi586:ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/mandrake/devel/community/i586/media/main
communityi586:ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://ftp.gwdg.de/pub/linux/mandrakelinux/devel/community/i586/media/main
communityi586:ftp://ftp.join.uni-muenster.de/pub/linux/distributions/mandrake-devel/community/i586/media/main
communityi586:ftp://ftp.lip6.fr/pub/linux/distributions/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrake/devel/community/i586/media/main
communityi586:ftp://ftp.proxad.net/pub/Distributions_Linux/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/devel/community/i586/media/main
communityi586:ftp://ftp.surfnet.nl/pub/os/Linux/distr/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://ftp.tugraz.at/mirror/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://ftp.uninett.no/pub/unix/Linux/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://ftp.u-strasbg.fr/pub/linux/distributions/mandrakelinux/devel/community/i586/media/main
communityi586:ftp://gd.tuwien.ac.at/pub/linux/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://jungle.metalab.unc.edu/pub/Linux/distributions/mandrake/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://mandrake.contactel.cz/Mandrakelinux/devel/community/i586/media/main
communityi586:ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/mandrake-devel/community/i586/media/main
cookerppc:ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/mandrake/devel/cooker/ppc/media/main
cookerppc:ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/Mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://ftp.club-internet.fr/pub/unix/linux/distributions/Mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://ftp.gwdg.de/pub/linux/mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://ftp.join.uni-muenster.de/pub/linux/distributions/mandrake-devel/cooker/ppc/media/main
cookerppc:ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrake/devel/cooker/ppc/media/main
cookerppc:ftp://ftp.proxad.net/pub/Distributions_Linux/Mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://ftp.surfnet.nl/pub/os/Linux/distr/Mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://ftp.tugraz.at/mirror/Mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://ftp.uninett.no/pub/unix/Linux/Mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://gd.tuwien.ac.at/pub/linux/Mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://mandrake.contactel.cz/Mandrakelinux/devel/cooker/ppc/media/main
cookerppc:ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/mandrake-devel/cooker/ppc/media/main
updatesppc:ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/mandrake/official/updates/ppc
updatesppc:ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.club-internet.fr/pub/unix/linux/distributions/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.esat.net/pub/linux/mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.gwdg.de/pub/linux/mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.ikoula.com/pub/ftp.mandrake-linux.com/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.join.uni-muenster.de/pub/linux/distributions/mandrake/updates/ppc
updatesppc:ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.pcds.ch/pub/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.proxad.net/pub/Distributions_Linux/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.ps.pl/mirrors/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.surfnet.nl/pub/os/Linux/distr/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.tugraz.at/mirror/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.uninett.no/pub/unix/Linux/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.uni-bayreuth.de/pub/linux/Mandrakelinux/official/updates/ppc
updatesppc:ftp://ftp.vat.tu-dresden.de/pub/Mandrakelinux/official/updates/ppc
updatesppc:ftp://gd.tuwien.ac.at/pub/linux/Mandrakelinux/official/updates/ppc
updatesppc:ftp://jungle.metalab.unc.edu/pub/Linux/distributions/mandrake/Mandrakelinux/official/updates/ppc
updatesppc:ftp://linux.cdpa.nsysu.edu.tw/pub/mandrake/updates/ppc
updatesppc:ftp://mandrake.contactel.cz/Mandrakelinux/official/updates/ppc
updatesppc:ftp://mandrake.mirrors.pair.com/Mandrakelinux/official/updates/ppc
updatesppc:ftp://mirrors.secsup.org/pub/linux/mandrake/Mandrakelinux/official/updates/ppc
updatesppc:ftp://spirit.profinet.sk/mirrors/Mandrake/updates/ppc
updatesppc:ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/mandrake/updates/ppc
updatesppc:ftp://updates.roma2.infn.it/linux/updates/mandrake/ppc
cookerx86_64:ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/mandrake/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/Mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.club-internet.fr/pub/unix/linux/distributions/Mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.gwdg.de/pub/linux/mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.join.uni-muenster.de/pub/linux/distributions/mandrake-devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrake/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.proxad.net/pub/Distributions_Linux/Mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.surfnet.nl/pub/os/Linux/distr/Mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.tugraz.at/mirror/Mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://ftp.uninett.no/pub/unix/Linux/Mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://gd.tuwien.ac.at/pub/linux/Mandrakelinux/devel/cooker/x86_64/media/main
cookerx86_64:ftp://mandrake.contactel.cz/Mandrakelinux/devel/cooker/x86_64/media/main
updatesx86_64:ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/mandrake/official/updates/x86_64
updatesx86_64:ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.club-internet.fr/pub/unix/linux/distributions/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.esat.net/pub/linux/mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.gwdg.de/pub/linux/mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.ikoula.com/pub/ftp.mandrake-linux.com/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.join.uni-muenster.de/pub/linux/distributions/mandrake/updates/x86_64
updatesx86_64:ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.pcds.ch/pub/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.proxad.net/pub/Distributions_Linux/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.ps.pl/mirrors/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.surfnet.nl/pub/os/Linux/distr/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.tugraz.at/mirror/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.uninett.no/pub/unix/Linux/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.uni-bayreuth.de/pub/linux/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://ftp.vat.tu-dresden.de/pub/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://gd.tuwien.ac.at/pub/linux/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://jungle.metalab.unc.edu/pub/Linux/distributions/mandrake/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://mandrake.contactel.cz/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://mandrake.mirrors.pair.com/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://mirrors.secsup.org/pub/linux/mandrake/Mandrakelinux/official/updates/x86_64
updatesx86_64:ftp://spirit.profinet.sk/mirrors/Mandrake/updates/x86_64
updatesx86_64:ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/mandrake/updates/x86_64
updatesx86_64:ftp://updates.roma2.infn.it/linux/updates/mandrake/x86_64
cookeri586:ftp://anorien.csc.warwick.ac.uk/Mandrakelinux/devel/cooker
cookeri586:ftp://bo.mirror.garr.it/pub/mirrors/Mandrake/devel/cooker
cookeri586:ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.aso.ee/pub/Mandrake/devel/cooker
cookeri586:ftp://ftp.belnet.be/packages/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.bylinux.net/pub/mirror/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.cica.es/pub/Linux/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.ciril.fr/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.cise.ufl.edu/pub/mirrors/mandrake/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.cs.ucr.edu/pub/mirrors/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.ens-cachan.fr/pub/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.esat.net/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.fh-giessen.de/pub/linux/Mandrakelinux//devel/cooker
cookeri586:ftp://ftp.fh-wolfenbuettel.de/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.fi.muni.cz/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.free.fr/mirrors/ftp.mandrake-linux.com/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.gtlib.cc.gatech.edu/pub/mandrake/devel/cooker
cookeri586:ftp://ftp.gwdg.de/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.heanet.ie/pub/mandrake/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.icm.edu.pl/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.informatik.hu-berlin.de/pub/Linux/Distributions/Mandrake/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.int-evry.fr/pub/linux/mandrake/devel/cooker
cookeri586:ftp://ftp.isu.edu.tw/pub/Linux/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.isu.net.sa/pub/mirrors/ftp.mandrake.com/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.join.uni-muenster.de/pub/linux/distributions/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.kddlabs.co.jp/Linux/packages/Mandrake/devel/cooker
cookeri586:ftp://ftp.linux.cz/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.lip6.fr/pub/linux/distributions/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.mandrake.ikoula.com/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.mirrorservice.org/pub/Mandrake_Linux/devel/cooker
cookeri586:ftp://ftp.ndlug.nd.edu/pub/Mandrakelinux//devel/cooker
cookeri586:ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.phys.ttu.edu/pub/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.planetmirror.com/pub/Mandrake/devel/cooker
cookeri586:ftp://ftp.proxad.net/pub/Distributions_Linux/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.ps.pl/mirrors/mandrake/devel/cooker
cookeri586:ftp://ftp.rediris.es/pub/linux/distributions/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.riken.go.jp/pub/Linux/mandrake/devel/cooker
cookeri586:ftp://ftp.rutgers.edu/pub/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.sh.cvut.cz/MIRRORS/Mandrake/mandrake/devel/cooker
cookeri586:ftp://ftp.sun.ac.za/pub/linux/mandrake/pub/Linux/distributions/devel/cooker
cookeri586:ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.sunsite.org.uk/package/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.surfnet.nl/pub/os/Linux/distr/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.tu-chemnitz.de/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.u-strasbg.fr/pub/linux/distributions/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.uasw.edu/linux/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.uni-bayreuth.de/pub/linux/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.uni-wuppertal.de/pub/linux/mandrake/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp.univ-lille1.fr/pub/os/linux/distributions/mandrakelinux/devel/cooker
cookeri586:ftp://ftp.vat.tu-dresden.de/pub/Mandrakelinux/devel/cooker
cookeri586:ftp://ftp3.mandrake.sk/mirrors/Mandrakelinux/devel/cooker
cookeri586:ftp://gd.tuwien.ac.at/pub/linux/Mandrakelinux/devel/cooker
cookeri586:ftp://helios.dii.utk.edu/pub/linux/Mandrake/devel/cooker
cookeri586:ftp://hosef.ics.hawaii.edu//Mandrakelinux/devel/cooker
cookeri586:ftp://linux.ntcu.net/dists/mandrake/devel/cooker
cookeri586:ftp://linux.ups-tlse.fr/Mandrakelinux/devel/cooker
cookeri586:ftp://mandrake.contactel.cz/Mandrakelinux/devel/cooker
cookeri586:ftp://mandrake.mirrors.pair.com/Mandrakelinux//devel/cooker
cookeri586:ftp://mdk.linux.org.tw/pub/mandrakelinux/devel/cooker
cookeri586:ftp://mirror.aca.oakland.edu/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://mirror.cs.wisc.edu/pub/mirrors/linux/Mandrakelinux/devel/cooker
cookeri586:ftp://mirror.etf.bg.ac.yu/distributions/Mandrakelinux/devel/cooker
cookeri586:ftp://mirror.fis.unb.br/pub/linux/Mandrakelinux/devel/cooker
cookeri586:ftp://mirror.pacific.net.au/linux/Mandrakelinux/devel/cooker
cookeri586:ftp://mirror.switch.ch/mirror/mandrake/devel/cooker
cookeri586:ftp://mirrors.secsup.org/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://mirrors.xmission.com/mandrake/devel/cooker
cookeri586:ftp://public.planetmirror.com/pub/mandrake/devel/cooker
cookeri586:ftp://ramses.wh2.tu-dresden.de/pub/mirrors/mandrake/devel/cooker
cookeri586:ftp://raven.cslab.vt.edu/pub/linux/mandrakelinux/devel/cooker
cookeri586:ftp://rpm.pbone.net/pub/mandrake/mandrakelinux/devel/cooker
cookeri586:ftp://search.belnet.be/packages/mandrakelinux/devel/cooker
cookeri586:ftp://sunsite.cnlab-switch.ch/mirror/mandrake/devel/cooker
cookeri586:ftp://sunsite.icm.edu.pl/pub/Linux/mandrakelinux/devel/cooker
cookeri586:ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/mandrake/devel/cooker
cookeri586:ftp://tux.cprm.net/pub/Mandrake/devel/cooker
cookeri586:http://anorien.csc.warwick.ac.uk/mirrors/Mandrakelinux/devel/cooker
cookeri586:http://ftp.esat.net/pub/linux/mandrakelinux/devel/cooker
cookeri586:http://ftp.isu.net.sa/pub/mirrors/ftp.mandrake.com/mandrakelinux/devel/cooker
cookeri586:http://ftp.nluug.nl/ftp/pub/os/Linux/distr/Mandrakelinux/devel/cooker
cookeri586:http://ftp.rediris.es/pub/linux/distributions/mandrakelinux/devel/cooker
cookeri586:http://ftp.surfnet.nl/ftp/pub/os/Linux/distr/Mandrakelinux/devel/cooker
cookeri586:http://gd.tuwien.ac.at/pub/linux/Mandrakelinux/devel/cooker
cookeri586:http://klid.dk/homeftp/mandrakelinux/devel/cooker
cookeri586:http://sunsite.icm.edu.pl/pub/Linux/mandrakelinux/devel/cooker
cookeri586:http://wftp.tu-chemnitz.de/pub/linux/mandrakelinux/devel/cooker
cookeri586:http://www.gtlib.cc.gatech.edu/pub/mandrake/devel/cooker
updatesi586:ftp://anorien.csc.warwick.ac.uk/Mandrakelinux/official/updates
updatesi586:ftp://bo.mirror.garr.it/pub/mirrors/Mandrake/official/updates
updatesi586:ftp://distro.ibiblio.org/pub/Linux/distributions/mandrake/Mandrakelinux/official/updates
updatesi586:ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/Mandrakelinux/official/updates
updatesi586:ftp://ftp.aso.ee/pub/Mandrake/official/updates
updatesi586:ftp://ftp.belnet.be/packages/mandrakelinux/official/updates
updatesi586:ftp://ftp.cica.es/pub/Linux/Mandrakelinux/official/updates
updatesi586:ftp://ftp.ciril.fr/pub/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.cise.ufl.edu/pub/mirrors/mandrake/Mandrakelinux/official/updates
updatesi586:ftp://ftp.club-internet.fr/pub/unix/linux/distributions/Mandrakelinux/official/updates
updatesi586:ftp://ftp.cru.fr/pub/linux/Mandrakelinux/official/updates
updatesi586:ftp://ftp.cs.ucr.edu/pub/mirrors/mandrakelinux/official/updates
updatesi586:ftp://ftp.ens-cachan.fr/pub/Mandrakelinux/official/updates
updatesi586:ftp://ftp.esat.net/pub/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.fh-giessen.de/pub/linux/Mandrakelinux//official/updates
updatesi586:ftp://ftp.fh-wolfenbuettel.de/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.fi.muni.cz/pub/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.free.fr/mirrors/ftp.mandrake-linux.com/Mandrakelinux/official/updates
updatesi586:ftp://ftp.fsn.hu/pub/linux/distributions/mandrake/official/updates
updatesi586:ftp://ftp.gtlib.cc.gatech.edu/pub/mandrake/official/updates
updatesi586:ftp://ftp.gwdg.de/pub/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.icm.edu.pl/pub/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.informatik.hu-berlin.de/pub/Linux/Distributions/Mandrake/Mandrakelinux/official/updates
updatesi586:ftp://ftp.int-evry.fr/pub/linux/mandrake/official/updates
updatesi586:ftp://ftp.isu.edu.tw/pub/Linux/Mandrakelinux/official/updates
updatesi586:ftp://ftp.isu.net.sa/pub/mirrors/ftp.mandrake.com/mandrakelinux/official/updates
updatesi586:ftp://ftp.join.uni-muenster.de/pub/linux/distributions/mandrakelinux/official/updates
updatesi586:ftp://ftp.kddlabs.co.jp/Linux/packages/Mandrake/official/updates
updatesi586:ftp://ftp.linux.cz/pub/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.lip6.fr/pub/linux/distributions/Mandrakelinux/official/updates
updatesi586:ftp://ftp.mandrake.ikoula.com/Mandrakelinux/official/updates
updatesi586:ftp://ftp.mirror.ac.uk/sites/sunsite.uio.no/ftp/linux/mdl/official/updates
updatesi586:ftp://ftp.mirrorservice.org/pub/Mandrake_Linux/official/updates
updatesi586:ftp://ftp.mki.fh-duesseldorf.de/Mirror/Mandrake/official/updates
updatesi586:ftp://ftp.ndlug.nd.edu/pub/Mandrakelinux//official/updates
updatesi586:ftp://ftp.nectec.or.th/pub/linux-distributions/Mandrake/official/updates
updatesi586:ftp://ftp.nluug.nl/pub/os/Linux/distr/Mandrakelinux/official/updates
updatesi586:ftp://ftp.phys.ttu.edu/pub/mandrakelinux/official/updates
updatesi586:ftp://ftp.proxad.net/pub/Distributions_Linux/Mandrakelinux/official/updates
updatesi586:ftp://ftp.ps.pl/mirrors/mandrake/official/updates
updatesi586:ftp://ftp.rediris.es/pub/linux/distributions/mandrakelinux/official/updates
updatesi586:ftp://ftp.rhnet.is/pub/Mandrakelinux/official/updates
updatesi586:ftp://ftp.riken.go.jp/pub/Linux/mandrake/official/updates
updatesi586:ftp://ftp.rutgers.edu/pub/Mandrakelinux/official/updates
updatesi586:ftp://ftp.sh.cvut.cz/MIRRORS/Mandrake/mandrake/official/updates
updatesi586:ftp://ftp.song.fi/pub/mirrors/Mandrake-linux/official/updates
updatesi586:ftp://ftp.sunet.se/pub/Linux/distributions/mandrakelinux/official/updates
updatesi586:ftp://ftp.sunsite.dk/mirrors/mandrake/official/updates
updatesi586:ftp://ftp.surfnet.nl/pub/os/Linux/distr/Mandrakelinux/official/updates
updatesi586:ftp://ftp.task.gda.pl/pub/linux/Mandrakelinux/official/updates
updatesi586:ftp://ftp.tpnet.pl/d2/Mandrakelinux/official/updates
updatesi586:ftp://ftp.tu-chemnitz.de/pub/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.uasw.edu/linux/mandrakelinux/official/updates
updatesi586:ftp://ftp.umr.edu/pub/linux/mandrake/Mandrakelinux/official/updates
updatesi586:ftp://ftp.uni-bayreuth.de/pub/linux/Mandrakelinux/official/updates
updatesi586:ftp://ftp.uni-wuppertal.de/pub/linux/mandrake/Mandrakelinux/official/updates
updatesi586:ftp://ftp.unina.it/pub/linux/distributions/Mandrake/official/updates
updatesi586:ftp://ftp.uvsq.fr/pub/mandrake/official/updates
updatesi586:ftp://ftp.uwsg.indiana.edu/linux/mandrake/official/updates
updatesi586:ftp://ftp.vat.tu-dresden.de/pub/Mandrakelinux/official/updates
updatesi586:ftp://ftp3.mandrake.sk/mirrors/Mandrakelinux/official/updates
updatesi586:ftp://gd.tuwien.ac.at/pub/linux/Mandrakelinux/official/updates
updatesi586:ftp://helios.dii.utk.edu/pub/linux/Mandrake/official/updates
updatesi586:ftp://linux.ntcu.net/dists/mandrake/official/updates
updatesi586:ftp://linux.ups-tlse.fr/Mandrakelinux/official/updates
updatesi586:ftp://mandrake.contactel.cz/Mandrakelinux/official/updates
updatesi586:ftp://mandrake.mirrors.pair.com/Mandrakelinux//official/updates
updatesi586:ftp://mdk.linux.org.tw/pub/mandrakelinux/official/updates
updatesi586:ftp://mirror.cs.wisc.edu/pub/mirrors/linux/Mandrakelinux/official/updates
updatesi586:ftp://mirror.inspire.net.nz/mandrake//official/updates
updatesi586:ftp://mirror.pacific.net.au/linux/Mandrakelinux/official/updates
updatesi586:ftp://mirror.switch.ch/mirror/mandrake/official/updates
updatesi586:ftp://mirrors.ptd.net/mandrake/official/updates
updatesi586:ftp://mirrors.secsup.org/pub/linux/mandrakelinux/official/updates
updatesi586:ftp://mirrors.xmission.com/mandrake/official/updates
updatesi586:ftp://ramses.wh2.tu-dresden.de/pub/mirrors/mandrake/official/updates
updatesi586:ftp://rpm.pbone.net/pub/mandrake/mandrakelinux/official/updates
updatesi586:ftp://search.belnet.be/packages/mandrakelinux/official/updates
updatesi586:ftp://sunsite.cnlab-switch.ch/mirror/mandrake/official/updates
updatesi586:ftp://sunsite.icm.edu.pl/pub/Linux/mandrakelinux/official/updates
updatesi586:ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/mandrake/official/updates
updatesi586:ftp://tux.cprm.net/pub/Mandrake/official/updates
updatesi586:ftp://www.mirror.ac.uk/sites/sunsite.uio.no/ftp/linux/mdl/official/updates