Be completely sure apt will not try to prompt the user.

This commit is contained in:
Simon Quigley 2024-04-09 03:01:49 -05:00
parent 1cc0cb1be9
commit fd49ee70fe
2 changed files with 11 additions and 5 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
calamares-settings-ubuntu (1:24.04.25) UNRELEASED; urgency=medium
* Be completely sure apt will not try to prompt the user.
-- Simon Quigley <tsimonq2@ubuntu.com> Tue, 09 Apr 2024 03:01:19 -0500
calamares-settings-ubuntu (1:24.04.24) noble; urgency=medium calamares-settings-ubuntu (1:24.04.24) noble; urgency=medium
* Don't try to remove the nonexistant zram-config package from a Kubuntu * Don't try to remove the nonexistant zram-config package from a Kubuntu

View File

@ -3,13 +3,13 @@ dontChroot: false
timeout: 300 timeout: 300
"packages.minimalButton": "packages.minimalButton":
true: true:
- "apt-get -y --purge remove snapd vlc plasma-discover transmission-qt quassel 2048-qt featherpad noblenote kcalc qps zsync partitionmanager qapt-deb-installer picom qlipper qtpass libreoffice*" - "DEBIAN_FRONTEND=noninteractive apt-get -y --purge remove snapd vlc plasma-discover transmission-qt quassel 2048-qt featherpad noblenote kcalc qps zsync partitionmanager qapt-deb-installer picom qlipper qtpass libreoffice*"
- "apt-get -y autoremove" - "apt-get -y autoremove"
"packages.partyButton": "packages.partyButton":
true: true:
- "apt-get update" - "DEBIAN_FRONTEND=noninteractive apt-get update"
- "apt-get -y install ubuntu-restricted-addons unrar" - "DEBIAN_FRONTEND=noninteractive apt-get -y install ubuntu-restricted-addons unrar"
"packages.updatesButton": "packages.updatesButton":
true: "apt-get -y full-upgrade" true: "DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::='--force-confnew' full-upgrade"
"packages.virtmanagerButton": "packages.virtmanagerButton":
true: "apt-get -y install virt-manager" true: "DEBIAN_FRONTEND=noninteractive apt-get -y install virt-manager"