Merge lp:~paride/auto-upgrade-testing-specifications/set-debian-frontend into lp:auto-upgrade-testing-specifications

Proposed by Paride Legovini
Status: Merged
Approved by: Brian Murray
Approved revision: 64
Merged at revision: 64
Proposed branch: lp:~paride/auto-upgrade-testing-specifications/set-debian-frontend
Merge into: lp:auto-upgrade-testing-specifications
Diff against target: 363 lines (+28/-28)
28 files modified
profiles/ubuntu-bionic-focal-desktop-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-impish-desktop-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-impish-kubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-impish-lubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-impish-ubuntu-mate-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-impish-xubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-jammy-desktop-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-jammy-kubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-jammy-lubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-jammy-ubuntu-mate-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-focal-jammy-xubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-hirsute-impish-desktop-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-hirsute-impish-kubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-hirsute-impish-lubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-hirsute-impish-ubuntu-mate-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-hirsute-impish-xubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-impish-jammy-desktop-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-impish-jammy-kubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-impish-jammy-lubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-impish-jammy-ubuntu-mate-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-impish-jammy-xubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-jammy-kinetic-desktop-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-jammy-kinetic-kubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-jammy-kinetic-lubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-jammy-kinetic-ubuntu-mate-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-jammy-kinetic-xubuntu-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-xenial-bionic-desktop-amd64_qemu.yaml (+1/-1)
profiles/ubuntu-xenial-bionic-desktop-i386_qemu.yaml (+1/-1)
To merge this branch: bzr merge lp:~paride/auto-upgrade-testing-specifications/set-debian-frontend
Reviewer Review Type Date Requested Status
Brian Murray Approve
Review via email: mp+425732@code.launchpad.net

Commit message

Set DEBIAN_FRONTEND when installing the metapackages

The specific reason why we're adding this now is a debconf message with
"error" priority which is printed at install time by a package (encfs)
which is brought in as indirect dependency of several flavor metapackages.

Note that normally the installation is done from ISO images, and therefore
the message is handled by the installer. In other words DEBIAN_FRONTEND is
set in a testbed setup stage users are normally not exposed to.

To post a comment you must log in.
Revision history for this message
Brian Murray (brian-murray) wrote :

I'm confused by your latest sentence in the commit message:

"We're not setting DEBIAN_FRONTEND=noninteractive during the upgrade
process, which ideally we don't want to be blocked by debconf."

If we did not want the upgrade process blocked wouldn't we set the frontend to 'noninteractive'. We do want the upgrade to stop if there are debconf prompts so that is why it isn't set. Or am I misunderstanding?

Revision history for this message
Paride Legovini (paride) wrote :

I meant: we don't want the upgrade process to stop _even outside automation_, so we don't need to set DEBIAN_FRONTEND=noninteractive, and actually we don't want to set it, because we want to spot new blocking questions.

I can see that's confusing, I can reword it tomorrow.

Revision history for this message
Paride Legovini (paride) wrote :

@Brian I amended the commit message. I'm not mentioning the upgrade process anymore as that part of the commit message was imprecise: the Debian frontend is handled by auto-upgrade-testing via

 do-release-upgrade -f <frontend>

and apparently auto-upgrade-testing sets it to noninteractive (DistUpgradeViewNonInteractive). We can evaluate changing this in the future to spot blocking debconf questions, but for the moment this is how it is.

63. By Paride Legovini

Set DEBIAN_FRONTEND when installing the metapackages

The specific reason why we're adding this now is a debconf message with
"error" priority which is printed at install time by a package (encfs)
which is brought in as indirect dependency of several flavor metapackages.

Note that normally the installation is done from ISO images, and therefore
the message is handled by the installer. In other words DEBIAN_FRONTEND is
set in a testbed setup stage users are normally not exposed to.

64. By Paride Legovini

Make unifor use of `apt-get -y` across the profiles

Revision history for this message
Paride Legovini (paride) wrote :

Added another minor change: always call apt-get with a single `-y` flag.

Revision history for this message
Brian Murray (brian-murray) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'profiles/ubuntu-bionic-focal-desktop-amd64_qemu.yaml'
2--- profiles/ubuntu-bionic-focal-desktop-amd64_qemu.yaml 2019-12-23 06:49:47 +0000
3+++ profiles/ubuntu-bionic-focal-desktop-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
4@@ -6,7 +6,7 @@
5 flavor: ubuntu
6 image_name: bionic_focal_ubuntu_desktop_amd64.img
7 build_args:
8- - "--post-command 'sudo apt-get update && sudo apt-get dist-upgrade && sudo apt-get install ubuntu-desktop^' --timeout 14400"
9+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-desktop^' --timeout 14400"
10 releases:
11 - "bionic"
12 - "focal"
13
14=== modified file 'profiles/ubuntu-focal-impish-desktop-amd64_qemu.yaml'
15--- profiles/ubuntu-focal-impish-desktop-amd64_qemu.yaml 2022-06-28 13:39:50 +0000
16+++ profiles/ubuntu-focal-impish-desktop-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
17@@ -6,7 +6,7 @@
18 flavor: ubuntu
19 image_name: focal_impish_ubuntu_desktop_amd64.img
20 build_args:
21- - "--post-command 'sudo apt-get -y -y update && sudo apt-get -y -y dist-upgrade && sudo apt-get -y -y install ubuntu-desktop^' -v --timeout 14400"
22+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-desktop^' -v --timeout 14400"
23 releases:
24 - "focal"
25 - "impish"
26
27=== modified file 'profiles/ubuntu-focal-impish-kubuntu-amd64_qemu.yaml'
28--- profiles/ubuntu-focal-impish-kubuntu-amd64_qemu.yaml 2022-06-28 13:39:50 +0000
29+++ profiles/ubuntu-focal-impish-kubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
30@@ -6,7 +6,7 @@
31 flavor: kubuntu
32 image_name: focal_impish_kubuntu_desktop_amd64.img
33 build_args:
34- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install kubuntu-desktop' -v --timeout 14400"
35+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install kubuntu-desktop' -v --timeout 14400"
36 releases:
37 - "focal"
38 - "impish"
39
40=== modified file 'profiles/ubuntu-focal-impish-lubuntu-amd64_qemu.yaml'
41--- profiles/ubuntu-focal-impish-lubuntu-amd64_qemu.yaml 2022-06-28 13:39:50 +0000
42+++ profiles/ubuntu-focal-impish-lubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
43@@ -6,7 +6,7 @@
44 flavor: lubuntu
45 image_name: focal_impish_lubuntu_desktop_amd64.img
46 build_args:
47- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ^lubuntu-desktop' -v --timeout 14400"
48+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ^lubuntu-desktop' -v --timeout 14400"
49 releases:
50 - "focal"
51 - "impish"
52
53=== modified file 'profiles/ubuntu-focal-impish-ubuntu-mate-amd64_qemu.yaml'
54--- profiles/ubuntu-focal-impish-ubuntu-mate-amd64_qemu.yaml 2022-06-28 13:39:50 +0000
55+++ profiles/ubuntu-focal-impish-ubuntu-mate-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
56@@ -6,7 +6,7 @@
57 flavor: ubuntu-mate
58 image_name: focal_impish_ubuntu_mate_desktop_amd64.img
59 build_args:
60- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ubuntu-mate-desktop' -v --timeout 14400"
61+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-mate-desktop' -v --timeout 14400"
62 releases:
63 - "focal"
64 - "impish"
65
66=== modified file 'profiles/ubuntu-focal-impish-xubuntu-amd64_qemu.yaml'
67--- profiles/ubuntu-focal-impish-xubuntu-amd64_qemu.yaml 2022-06-28 13:39:50 +0000
68+++ profiles/ubuntu-focal-impish-xubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
69@@ -6,7 +6,7 @@
70 flavor: xubuntu
71 image_name: focal_impish_xubuntu_desktop_amd64.img
72 build_args:
73- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ^xubuntu-desktop' -v --timeout 14400"
74+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ^xubuntu-desktop' -v --timeout 14400"
75 releases:
76 - "focal"
77 - "impish"
78
79=== modified file 'profiles/ubuntu-focal-jammy-desktop-amd64_qemu.yaml'
80--- profiles/ubuntu-focal-jammy-desktop-amd64_qemu.yaml 2021-10-26 21:01:13 +0000
81+++ profiles/ubuntu-focal-jammy-desktop-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
82@@ -6,7 +6,7 @@
83 flavor: ubuntu
84 image_name: focal_jammy_ubuntu_desktop_amd64.img
85 build_args:
86- - "--post-command 'sudo apt-get -y -y update && sudo apt-get -y -y dist-upgrade && sudo apt-get -y -y install ubuntu-desktop^' -v --timeout 14400"
87+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-desktop^' -v --timeout 14400"
88 releases:
89 - "focal"
90 - "jammy"
91
92=== modified file 'profiles/ubuntu-focal-jammy-kubuntu-amd64_qemu.yaml'
93--- profiles/ubuntu-focal-jammy-kubuntu-amd64_qemu.yaml 2022-02-22 19:40:54 +0000
94+++ profiles/ubuntu-focal-jammy-kubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
95@@ -6,7 +6,7 @@
96 flavor: kubuntu
97 image_name: focal_jammy_kubuntu_desktop_amd64.img
98 build_args:
99- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install kubuntu-desktop' -v --timeout 14400"
100+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install kubuntu-desktop' -v --timeout 14400"
101 releases:
102 - "focal"
103 - "jammy"
104
105=== modified file 'profiles/ubuntu-focal-jammy-lubuntu-amd64_qemu.yaml'
106--- profiles/ubuntu-focal-jammy-lubuntu-amd64_qemu.yaml 2021-10-26 21:01:13 +0000
107+++ profiles/ubuntu-focal-jammy-lubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
108@@ -6,7 +6,7 @@
109 flavor: lubuntu
110 image_name: focal_jammy_lubuntu_desktop_amd64.img
111 build_args:
112- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ^lubuntu-desktop' -v --timeout 14400"
113+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ^lubuntu-desktop' -v --timeout 14400"
114 releases:
115 - "focal"
116 - "jammy"
117
118=== modified file 'profiles/ubuntu-focal-jammy-ubuntu-mate-amd64_qemu.yaml'
119--- profiles/ubuntu-focal-jammy-ubuntu-mate-amd64_qemu.yaml 2021-10-26 21:01:13 +0000
120+++ profiles/ubuntu-focal-jammy-ubuntu-mate-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
121@@ -6,7 +6,7 @@
122 flavor: ubuntu-mate
123 image_name: focal_jammy_ubuntu_mate_desktop_amd64.img
124 build_args:
125- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ubuntu-mate-desktop' -v --timeout 14400"
126+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-mate-desktop' -v --timeout 14400"
127 releases:
128 - "focal"
129 - "jammy"
130
131=== modified file 'profiles/ubuntu-focal-jammy-xubuntu-amd64_qemu.yaml'
132--- profiles/ubuntu-focal-jammy-xubuntu-amd64_qemu.yaml 2021-10-26 21:01:13 +0000
133+++ profiles/ubuntu-focal-jammy-xubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
134@@ -6,7 +6,7 @@
135 flavor: xubuntu
136 image_name: focal_jammy_xubuntu_desktop_amd64.img
137 build_args:
138- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ^xubuntu-desktop' -v --timeout 14400"
139+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ^xubuntu-desktop' -v --timeout 14400"
140 releases:
141 - "focal"
142 - "jammy"
143
144=== modified file 'profiles/ubuntu-hirsute-impish-desktop-amd64_qemu.yaml'
145--- profiles/ubuntu-hirsute-impish-desktop-amd64_qemu.yaml 2021-09-16 23:03:11 +0000
146+++ profiles/ubuntu-hirsute-impish-desktop-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
147@@ -6,7 +6,7 @@
148 flavor: ubuntu
149 image_name: hirsute_impish_ubuntu_desktop_amd64.img
150 build_args:
151- - "--post-command 'sudo apt-get -y -y update && sudo apt-get -y -y dist-upgrade && sudo apt-get -y -y install ubuntu-desktop^' -v --timeout 14400"
152+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-desktop^' -v --timeout 14400"
153 releases:
154 - "hirsute"
155 - "impish"
156
157=== modified file 'profiles/ubuntu-hirsute-impish-kubuntu-amd64_qemu.yaml'
158--- profiles/ubuntu-hirsute-impish-kubuntu-amd64_qemu.yaml 2021-09-16 23:03:11 +0000
159+++ profiles/ubuntu-hirsute-impish-kubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
160@@ -6,7 +6,7 @@
161 flavor: kubuntu
162 image_name: hirsute_impish_kubuntu_desktop_amd64.img
163 build_args:
164- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install kubuntu-desktop^' -v --timeout 14400"
165+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install kubuntu-desktop^' -v --timeout 14400"
166 releases:
167 - "hirsute"
168 - "impish"
169
170=== modified file 'profiles/ubuntu-hirsute-impish-lubuntu-amd64_qemu.yaml'
171--- profiles/ubuntu-hirsute-impish-lubuntu-amd64_qemu.yaml 2021-09-16 23:03:11 +0000
172+++ profiles/ubuntu-hirsute-impish-lubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
173@@ -6,7 +6,7 @@
174 flavor: lubuntu
175 image_name: hirsute_impish_lubuntu_desktop_amd64.img
176 build_args:
177- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install lubuntu-desktop^' -v --timeout 14400"
178+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install lubuntu-desktop^' -v --timeout 14400"
179 releases:
180 - "hirsute"
181 - "impish"
182
183=== modified file 'profiles/ubuntu-hirsute-impish-ubuntu-mate-amd64_qemu.yaml'
184--- profiles/ubuntu-hirsute-impish-ubuntu-mate-amd64_qemu.yaml 2021-09-16 23:03:11 +0000
185+++ profiles/ubuntu-hirsute-impish-ubuntu-mate-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
186@@ -6,7 +6,7 @@
187 flavor: ubuntu-mate
188 image_name: hirsute_impish_ubuntu_mate_desktop_amd64.img
189 build_args:
190- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ubuntu-mate-desktop^' -v --timeout 14400"
191+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-mate-desktop^' -v --timeout 14400"
192 releases:
193 - "hirsute"
194 - "impish"
195
196=== modified file 'profiles/ubuntu-hirsute-impish-xubuntu-amd64_qemu.yaml'
197--- profiles/ubuntu-hirsute-impish-xubuntu-amd64_qemu.yaml 2021-09-16 23:03:11 +0000
198+++ profiles/ubuntu-hirsute-impish-xubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
199@@ -6,7 +6,7 @@
200 flavor: xubuntu
201 image_name: hirsute_impish_xubuntu_desktop_amd64.img
202 build_args:
203- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install xubuntu-desktop^' -v --timeout 14400"
204+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install xubuntu-desktop^' -v --timeout 14400"
205 releases:
206 - "hirsute"
207 - "impish"
208
209=== modified file 'profiles/ubuntu-impish-jammy-desktop-amd64_qemu.yaml'
210--- profiles/ubuntu-impish-jammy-desktop-amd64_qemu.yaml 2021-10-26 16:32:07 +0000
211+++ profiles/ubuntu-impish-jammy-desktop-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
212@@ -6,7 +6,7 @@
213 flavor: ubuntu
214 image_name: impish_jammy_ubuntu_desktop_amd64.img
215 build_args:
216- - "--post-command 'sudo apt-get -y -y update && sudo apt-get -y -y dist-upgrade && sudo apt-get -y -y install ubuntu-desktop^' -v --timeout 14400"
217+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-desktop^' -v --timeout 14400"
218 releases:
219 - "impish"
220 - "jammy"
221
222=== modified file 'profiles/ubuntu-impish-jammy-kubuntu-amd64_qemu.yaml'
223--- profiles/ubuntu-impish-jammy-kubuntu-amd64_qemu.yaml 2022-02-22 19:40:54 +0000
224+++ profiles/ubuntu-impish-jammy-kubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
225@@ -6,7 +6,7 @@
226 flavor: kubuntu
227 image_name: impish_jammy_kubuntu_desktop_amd64.img
228 build_args:
229- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install kubuntu-desktop^' -v --timeout 14400"
230+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install kubuntu-desktop^' -v --timeout 14400"
231 releases:
232 - "impish"
233 - "jammy"
234
235=== modified file 'profiles/ubuntu-impish-jammy-lubuntu-amd64_qemu.yaml'
236--- profiles/ubuntu-impish-jammy-lubuntu-amd64_qemu.yaml 2021-10-26 16:32:07 +0000
237+++ profiles/ubuntu-impish-jammy-lubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
238@@ -6,7 +6,7 @@
239 flavor: lubuntu
240 image_name: impish_jammy_lubuntu_desktop_amd64.img
241 build_args:
242- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install lubuntu-desktop^' -v --timeout 14400"
243+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install lubuntu-desktop^' -v --timeout 14400"
244 releases:
245 - "impish"
246 - "jammy"
247
248=== modified file 'profiles/ubuntu-impish-jammy-ubuntu-mate-amd64_qemu.yaml'
249--- profiles/ubuntu-impish-jammy-ubuntu-mate-amd64_qemu.yaml 2021-10-26 16:32:07 +0000
250+++ profiles/ubuntu-impish-jammy-ubuntu-mate-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
251@@ -6,7 +6,7 @@
252 flavor: ubuntu-mate
253 image_name: impish_jammy_ubuntu_mate_desktop_amd64.img
254 build_args:
255- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ubuntu-mate-desktop^' -v --timeout 14400"
256+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-mate-desktop^' -v --timeout 14400"
257 releases:
258 - "impish"
259 - "jammy"
260
261=== modified file 'profiles/ubuntu-impish-jammy-xubuntu-amd64_qemu.yaml'
262--- profiles/ubuntu-impish-jammy-xubuntu-amd64_qemu.yaml 2021-10-26 16:32:07 +0000
263+++ profiles/ubuntu-impish-jammy-xubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
264@@ -6,7 +6,7 @@
265 flavor: xubuntu
266 image_name: impish_jammy_xubuntu_desktop_amd64.img
267 build_args:
268- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install xubuntu-desktop^' -v --timeout 14400"
269+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install xubuntu-desktop^' -v --timeout 14400"
270 releases:
271 - "impish"
272 - "jammy"
273
274=== modified file 'profiles/ubuntu-jammy-kinetic-desktop-amd64_qemu.yaml'
275--- profiles/ubuntu-jammy-kinetic-desktop-amd64_qemu.yaml 2022-05-11 23:09:27 +0000
276+++ profiles/ubuntu-jammy-kinetic-desktop-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
277@@ -6,7 +6,7 @@
278 flavor: ubuntu
279 image_name: jammy_kinetic_ubuntu_desktop_amd64.img
280 build_args:
281- - "--post-command 'sudo apt-get -y -y update && sudo apt-get -y -y dist-upgrade && sudo apt-get -y -y install ubuntu-desktop^' -v --timeout 14400"
282+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-desktop^' -v --timeout 14400"
283 releases:
284 - "jammy"
285 - "kinetic"
286
287=== modified file 'profiles/ubuntu-jammy-kinetic-kubuntu-amd64_qemu.yaml'
288--- profiles/ubuntu-jammy-kinetic-kubuntu-amd64_qemu.yaml 2022-05-11 23:09:27 +0000
289+++ profiles/ubuntu-jammy-kinetic-kubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
290@@ -6,7 +6,7 @@
291 flavor: kubuntu
292 image_name: jammy_kinetic_kubuntu_desktop_amd64.img
293 build_args:
294- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install kubuntu-desktop^' -v --timeout 14400"
295+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install kubuntu-desktop^' -v --timeout 14400"
296 releases:
297 - "jammy"
298 - "kinetic"
299
300=== modified file 'profiles/ubuntu-jammy-kinetic-lubuntu-amd64_qemu.yaml'
301--- profiles/ubuntu-jammy-kinetic-lubuntu-amd64_qemu.yaml 2022-05-11 23:09:27 +0000
302+++ profiles/ubuntu-jammy-kinetic-lubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
303@@ -6,7 +6,7 @@
304 flavor: lubuntu
305 image_name: jammy_kinetic_lubuntu_desktop_amd64.img
306 build_args:
307- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install lubuntu-desktop^' -v --timeout 14400"
308+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install lubuntu-desktop^' -v --timeout 14400"
309 releases:
310 - "jammy"
311 - "kinetic"
312
313=== modified file 'profiles/ubuntu-jammy-kinetic-ubuntu-mate-amd64_qemu.yaml'
314--- profiles/ubuntu-jammy-kinetic-ubuntu-mate-amd64_qemu.yaml 2022-05-11 23:09:27 +0000
315+++ profiles/ubuntu-jammy-kinetic-ubuntu-mate-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
316@@ -6,7 +6,7 @@
317 flavor: ubuntu-mate
318 image_name: jammy_kinetic_ubuntu_mate_desktop_amd64.img
319 build_args:
320- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install ubuntu-mate-desktop^' -v --timeout 14400"
321+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-mate-desktop^' -v --timeout 14400"
322 releases:
323 - "jammy"
324 - "kinetic"
325
326=== modified file 'profiles/ubuntu-jammy-kinetic-xubuntu-amd64_qemu.yaml'
327--- profiles/ubuntu-jammy-kinetic-xubuntu-amd64_qemu.yaml 2022-05-11 23:09:27 +0000
328+++ profiles/ubuntu-jammy-kinetic-xubuntu-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
329@@ -6,7 +6,7 @@
330 flavor: xubuntu
331 image_name: jammy_kinetic_xubuntu_desktop_amd64.img
332 build_args:
333- - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y install xubuntu-desktop^' -v --timeout 14400"
334+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install xubuntu-desktop^' -v --timeout 14400"
335 releases:
336 - "jammy"
337 - "kinetic"
338
339=== modified file 'profiles/ubuntu-xenial-bionic-desktop-amd64_qemu.yaml'
340--- profiles/ubuntu-xenial-bionic-desktop-amd64_qemu.yaml 2017-11-07 09:15:19 +0000
341+++ profiles/ubuntu-xenial-bionic-desktop-amd64_qemu.yaml 2022-06-29 13:25:57 +0000
342@@ -6,7 +6,7 @@
343 flavor: ubuntu
344 image_name: xenial_bionic_ubuntu_desktop_amd64.img
345 build_args:
346- - "--post-command 'sudo apt-get update && sudo apt-get dist-upgrade && sudo apt-get install ubuntu-desktop^' --timeout 14400"
347+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-desktop^' --timeout 14400"
348 releases:
349 - "xenial"
350 - "bionic"
351
352=== modified file 'profiles/ubuntu-xenial-bionic-desktop-i386_qemu.yaml'
353--- profiles/ubuntu-xenial-bionic-desktop-i386_qemu.yaml 2017-11-07 09:15:19 +0000
354+++ profiles/ubuntu-xenial-bionic-desktop-i386_qemu.yaml 2022-06-29 13:25:57 +0000
355@@ -6,7 +6,7 @@
356 flavor: ubuntu
357 image_name: xenial_bionic_ubuntu_desktop_i386.img
358 build_args:
359- - "--post-command 'sudo apt-get update && sudo apt-get dist-upgrade && sudo apt-get install ubuntu-desktop^' --timeout 14400"
360+ - "--post-command 'sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-desktop^' --timeout 14400"
361 releases:
362 - "xenial"
363 - "bionic"

Subscribers

People subscribed via source and target branches