From e2ff62c2c843276c9396603e8e338f8106c5b965 Mon Sep 17 00:00:00 2001 From: Giancarlo Razzolini Date: Tue, 29 Dec 2020 06:14:01 -0300 Subject: [PATCH 1/2] tf-stage1/archlinux: Move mailman to redirect Pointed the mailman CNAME to the new redirect machine for finishing the apollo migration. --- tf-stage1/archlinux.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf-stage1/archlinux.tf b/tf-stage1/archlinux.tf index c7815000..9006a191 100644 --- a/tf-stage1/archlinux.tf +++ b/tf-stage1/archlinux.tf @@ -236,7 +236,7 @@ locals { ipxe = { value = "www" } "luna2._domainkey.aur" = { value = "luna2._domainkey" } "luna2._domainkey.lists" = { value = "luna2._domainkey" } - mailman = { value = "apollo" } + mailman = { value = "redirect" } packages = { value = "www" } planet = { value = "www" } projects = { value = "luna" } -- GitLab From a40f86323ca7515d940c89beab7ea0e8a6fbc43c Mon Sep 17 00:00:00 2001 From: Giancarlo Razzolini Date: Tue, 29 Dec 2020 06:14:38 -0300 Subject: [PATCH 2/2] roles/redirects: Add mailman to the list of redirects Added mailman.archlinux.org to the list of redirects pointing to lists.archlinux.org. --- roles/redirects/defaults/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/redirects/defaults/main.yml b/roles/redirects/defaults/main.yml index 3a67115b..d4b5e5c7 100644 --- a/roles/redirects/defaults/main.yml +++ b/roles/redirects/defaults/main.yml @@ -4,6 +4,10 @@ # - type: HTTP status code to use (302 = temporary redirect, 301 = permanent redirect #) redirects: + - mailman: + domain: mailman.archlinux.org + to: https://lists.archlinux.org$request_uri + type: 301 - static.conf: domain: static.conf.archlinux.org to: https://gitlab.archlinux.org/archlinux/conf-files/-/raw/master$request_uri -- GitLab