diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-10-31 08:49:14 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-10-31 08:49:14 +0000 |
commit | 648f4d5a5290edd34d0e2a3a1371d8c758bd84bf (patch) | |
tree | b482a2a285be54dfdf26b4a85481a446078e6e57 /urpm/download.pm | |
parent | 07bb6b67352fcf334fd106df18de11cb8332fc98 (diff) | |
download | urpmi-648f4d5a5290edd34d0e2a3a1371d8c758bd84bf.tar urpmi-648f4d5a5290edd34d0e2a3a1371d8c758bd84bf.tar.gz urpmi-648f4d5a5290edd34d0e2a3a1371d8c758bd84bf.tar.bz2 urpmi-648f4d5a5290edd34d0e2a3a1371d8c758bd84bf.tar.xz urpmi-648f4d5a5290edd34d0e2a3a1371d8c758bd84bf.zip |
Use the --no-check-certificate option for downloading with wget, since
the club https servers use self-signed certificates.
Diffstat (limited to 'urpm/download.pm')
-rw-r--r-- | urpm/download.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/urpm/download.pm b/urpm/download.pm index 52f33d24..ded58cdd 100644 --- a/urpm/download.pm +++ b/urpm/download.pm @@ -217,6 +217,7 @@ sub sync_wget { ($options->{callback} ? ("--progress=bar:force", "-o", "-") : $options->{quiet} ? "-q" : @{[]}), "--retr-symlinks", + "--no-check-certificate", "--timeout=$CONNECT_TIMEOUT", "-NP", $options->{dir}, |