diff options
author | Daouda Lo <daouda@mandriva.com> | 2004-03-19 14:56:36 +0000 |
---|---|---|
committer | Daouda Lo <daouda@mandriva.com> | 2004-03-19 14:56:36 +0000 |
commit | b1712cafef08290e8442a3713467e03d32b0d72a (patch) | |
tree | 0a5d5555a69af633df597cd947ed2c64f6447bc1 /mdkupdate | |
parent | 896e65dc4140b6f495bd3ca5c40780ef8aca2c01 (diff) | |
download | mgaonline-b1712cafef08290e8442a3713467e03d32b0d72a.tar mgaonline-b1712cafef08290e8442a3713467e03d32b0d72a.tar.gz mgaonline-b1712cafef08290e8442a3713467e03d32b0d72a.tar.bz2 mgaonline-b1712cafef08290e8442a3713467e03d32b0d72a.tar.xz mgaonline-b1712cafef08290e8442a3713467e03d32b0d72a.zip |
- fake ftp site
Diffstat (limited to 'mdkupdate')
-rwxr-xr-x | mdkupdate | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -81,7 +81,10 @@ if ($o{LOGIN} && $o{PASS} && $o{LOGIN} !~ /\s+/ && $o{PASS} !~ /\s+/) { my $c2h = splitContents($contents); printf("\nCONTENTS = $contents \n torf = %s\n OLDKEY = %s = %s \n NEWKEY = %s \n FTP = %s", $c2h->{torf}, $c2h->{OLDKEY}, $o{CURRENTKEY}, $c2h->{NEWKEY}, $c2h->{FTP} ); if ($c2h->{torf} eq "TRUE" && $c2h->{OLDKEY} && $c2h->{NEWKEY}) { updateConf($c2h->{OLDKEY}, $c2h->{NEWKEY}) } - if ($c2h->{FTP}) { addMedia($c2h->{FTP}) } + if ($c2h->{FTP}) { + # for debugging purpose + $c2h->{FTP} = 'ftp://ftp.lip6.fr/pub/linux/distributions/mandrake/updates'; + addMedia($c2h->{FTP}) } $scheduled = join(',',@{$c2h->{sched}}); $noscheduled = join(',',@{$c2h->{nosched}}); if ($opt eq '--applet') { @@ -245,7 +248,7 @@ sub updateConf { sub addMedia { my $mirror = shift; my $r = getRelease(); - my $fullpath2mir = "ftp://" . "$mirror". "/$r" . "/RPMS" . "/" ; + my $fullpath2mir = "$mirror". "/$r" . "/RPMS" . "/" ; eval { system "/usr/sbin/urpmi.removemedia", "mdkupdate"; system "/usr/sbin/urpmi.addmedia", "--update", "mdkupdate", $fullpath2mir, "with ../base/hdlist.cz"; |