From 726a6773ffe93261bbe1df10e2b35197c14c53f9 Mon Sep 17 00:00:00 2001 From: Evangelos Foutras <evangelos@foutrelis.com> Date: Fri, 18 Mar 2022 16:59:05 +0200 Subject: [PATCH] common: use tier0 mirror on build servers + gemini There is a need for build servers to never build against outdated repo databases, even with syncrepo providing a local mirror that is updated every minute. To that effect, we adjust mirrorlist on build servers so the tier0 mirror provided by gemini over wireguard is the first mirror. Keep the syncrepo role on build servers in order to have a local cache of packages and avoid concurrent build jobs downloading the same files causing them to be corrupted. Finally, configure gemini to use its own repos (like other mirrors do). --- roles/common/templates/mirrorlist.j2 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/roles/common/templates/mirrorlist.j2 b/roles/common/templates/mirrorlist.j2 index 2b6f0a692..a8978624e 100644 --- a/roles/common/templates/mirrorlist.j2 +++ b/roles/common/templates/mirrorlist.j2 @@ -1,4 +1,7 @@ -{% if 'mirrors' in group_names or 'buildservers' in group_names %} +{% if 'buildservers' in group_names %} +Server = http://{{ hostvars['gemini.archlinux.org']['wireguard_address'] }}/$repo/os/$arch +{% endif %} +{% if 'mirrors' in group_names or inventory_hostname == 'gemini.archlinux.org' %} Server = file:///srv/ftp/$repo/os/$arch {% endif %} Server = https://mirror.pkgbuild.com/$repo/os/$arch/ -- GitLab