From 2421b2b3c17a609a75d45672def27174462dbdc0 Mon Sep 17 00:00:00 2001 From: Franck Bui Date: Thu, 12 Oct 2017 17:08:11 +0200 Subject: [PATCH] openSUSE: don't use https to access mirrors for the time being Some openSUSE mirrors redirect https to http and this seems to make curl(1) unhappy now. There's a request to fix that on mirror side: https://github.com/openSUSE/mirrorbrain/issues/3 but for the time being switch to http to access all mirrors. There seems to be no additional values in https:// as the rpms are signed by gpg keys already, so is the repodata anyways. Fixes: #137 Fixes: #159 --- mkosi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkosi b/mkosi index c51a2394f..dff1e4cc6 100755 --- a/mkosi +++ b/mkosi @@ -2574,7 +2574,7 @@ def load_args(): if platform.machine() == "aarch64": args.mirror = "http://mirror.archlinuxarm.org" elif args.distribution == Distribution.opensuse: - args.mirror = "https://download.opensuse.org" + args.mirror = "http://download.opensuse.org" if args.bootable: if args.distribution == Distribution.ubuntu: -- 2.47.2