Alexandros Kosiaris has submitted this change and it was merged. Change subject: autoinstall: fix preseeding of tasksel/first ......................................................................
autoinstall: fix preseeding of tasksel/first It turns out that our preseeded value for tasksel/first (of none) was being ignored, in turn resulting in the default set of tasks to be installed in at least Debian systems. Moreover, due to the fact that tasksel defaults to installing a desktop(!) task on systems where dmidecode does not return a "rack mount chassis", this resulted into newly-installed VMs to be provisioned with a full GNOME desktop(!). The cause for this was that we were preseeding tasksel/first as a d-i configuration value, not a tasksel one. Since tasksel runs on the target system, this was not being propagated and was ignored instead. Change-Id: Ib374d4a7d74135e49cd17affe09c391f57defd81 --- M modules/install-server/files/autoinstall/common.cfg 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Alexandros Kosiaris: Looks good to me, approved jenkins-bot: Verified diff --git a/modules/install-server/files/autoinstall/common.cfg b/modules/install-server/files/autoinstall/common.cfg index 7ddb838..0b819e1 100644 --- a/modules/install-server/files/autoinstall/common.cfg +++ b/modules/install-server/files/autoinstall/common.cfg @@ -44,7 +44,7 @@ d-i base-installer/install-recommends boolean false # Tasksel - do not install anything -d-i tasksel/first multiselect +tasksel tasksel/first multiselect # disable multiarch, enabled by default in Ubuntu amd64 since saucy d-i apt-setup/multiarch string -- To view, visit https://gerrit.wikimedia.org/r/215923 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ib374d4a7d74135e49cd17affe09c391f57defd81 Gerrit-PatchSet: 3 Gerrit-Project: operations/puppet Gerrit-Branch: production Gerrit-Owner: Faidon Liambotis <[email protected]> Gerrit-Reviewer: Alexandros Kosiaris <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
