diff options
author | David Bauer <mail@david-bauer.net> | 2023-01-07 01:22:23 +0100 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2023-01-07 01:32:58 +0100 |
commit | 9ac377d0e012e42d9cd69ccc6471fae93c738c1d (patch) | |
tree | c06e041bc4ced746a5ba11388ef748f1cefc78c1 /scripts | |
parent | f97ce066a85c8a67bbda696256b5a9a875727b4c (diff) | |
download | upstream-9ac377d0e012e42d9cd69ccc6471fae93c738c1d.tar.gz upstream-9ac377d0e012e42d9cd69ccc6471fae93c738c1d.tar.bz2 upstream-9ac377d0e012e42d9cd69ccc6471fae93c738c1d.zip |
scripts: add Apache fastly mirror
Add the Apache fastly mirror as preferred download source.
This service is using a dual-stacked CDN.
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index 0b3f99e9b0..676c6e9e6b 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -255,6 +255,7 @@ foreach my $mirror (@ARGV) { push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/debian/$1"; push @mirrors, "https://mirrors.ustc.edu.cn/debian/$1" } elsif ($mirror =~ /^\@APACHE\/(.+)$/) { + push @mirrors, "https://dlcdn.apache.org/$1"; push @mirrors, "https://mirror.netcologne.de/apache.org/$1"; push @mirrors, "https://mirror.aarnet.edu.au/pub/apache/$1"; push @mirrors, "https://mirror.csclub.uwaterloo.ca/apache/$1"; |