From 367069f3a7c834382cf67073be538d34bcd15f0b Mon Sep 17 00:00:00 2001 From: ben-ba <2997987+ben-ba@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:32:00 +0100 Subject: [PATCH 1/2] Update autoinstall-reference.rst Missing hypen for uri will result in an error, if it is the only value in list. error: { 'uri': 'http://archive.ubuntu.com/ubuntu/' } is not of type 'array' --- doc/reference/autoinstall-reference.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/reference/autoinstall-reference.rst b/doc/reference/autoinstall-reference.rst index ca07c0d6b..ac1954fa9 100644 --- a/doc/reference/autoinstall-reference.rst +++ b/doc/reference/autoinstall-reference.rst @@ -270,9 +270,9 @@ The default is: primary: - country-mirror - arches: [i386, amd64] - uri: "http://archive.ubuntu.com/ubuntu" + - uri: "http://archive.ubuntu.com/ubuntu" - arches: [s390x, arm64, armhf, powerpc, ppc64el, riscv64] - uri: "http://ports.ubuntu.com/ubuntu-ports" + - uri: "http://ports.ubuntu.com/ubuntu-ports" fallback: abort geoip: true From d0012b70c482de266e802567dbb30ca5454515c2 Mon Sep 17 00:00:00 2001 From: Benjamin Brauner <11899021@auf.bundeswehr.de> Date: Fri, 15 Mar 2024 11:13:40 +0100 Subject: [PATCH 2/2] switching order of arches (opt) and uri (req) --- doc/reference/autoinstall-reference.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/reference/autoinstall-reference.rst b/doc/reference/autoinstall-reference.rst index ac1954fa9..59461f306 100644 --- a/doc/reference/autoinstall-reference.rst +++ b/doc/reference/autoinstall-reference.rst @@ -269,10 +269,10 @@ The default is: mirror-selection: primary: - country-mirror - - arches: [i386, amd64] - uri: "http://archive.ubuntu.com/ubuntu" - - arches: [s390x, arm64, armhf, powerpc, ppc64el, riscv64] + arches: [i386, amd64] - uri: "http://ports.ubuntu.com/ubuntu-ports" + arches: [s390x, arm64, armhf, powerpc, ppc64el, riscv64] fallback: abort geoip: true