diff options
author | Xavier Chantry <shiningxc@gmail.com> | 2009-08-19 18:35:32 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-09-06 22:53:54 +0200 |
commit | 65c1f06be5a9c4bdb197b61563da7c2e28162392 (patch) | |
tree | cc715dc8a677a2568700a16dcac047f500c1a20e /scripts | |
parent | 5b27e78ba015a48baf2d3c8687fdf3084781f9c9 (diff) | |
download | pacman-65c1f06be5a9c4bdb197b61563da7c2e28162392.tar.gz pacman-65c1f06be5a9c4bdb197b61563da7c2e28162392.tar.xz |
Allow $arch to be used in Server
similarly to the $repo variable, Server can now contain $arch, which will be
automatically replaced by the appropriate architecture.
This allows us to have one universal mirrorlist file, for both i686 and x86_64,
woohoo!
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/rankmirrors.py.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/rankmirrors.py.in b/scripts/rankmirrors.py.in index 4b253b67..6bfa6612 100644 --- a/scripts/rankmirrors.py.in +++ b/scripts/rankmirrors.py.in @@ -156,6 +156,8 @@ if __name__ == "__main__": # if the $repo var is used in the url, replace it by core tempUrl = Template(serverUrl).safe_substitute(repo='core') + # if the $arch var is used in the url, replace it by i686 + tempUrl = Template(tempUrl).safe_substitute(arch='i686') # add @DBEXT@ to server name. the repo name is parsed # from the mirror url; it is the third (or fourth) dir |