grml-debootstrap
grml-debootstrap copied to clipboard
Drop package acpi-support-base?
acpi-support-base shouldn't be installed with systems running systemd according to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783247 - we should think about dropping it from the default package list. I'm unsure yet though what to do about systems without systemd and how to handle that then. Maybe by supporting packages.$release or so?
packages.$release
sounds like a plan.
Ok, we could start by copying the existing packages file to packages.{lenny,squeeze,wheezy} and then adjust for packages.jessie and packages.stretch. Then drop packages file overall and don't install /etc/debootstrap/packages any longer that way, only if the file exists then use it, otherwise default to /etc/debootstrap/packages.$release. This should ensure more flexibility with regards to target releases without breaking backwards compatibility for users customizing /etc/debootstrap/packages too much.
On users who customized /etc/debootstrap/packages
, the only way to make sure they do not accidentally install machines with a config other than their custom packages (but with say packages.jessie
) would be to
- not ship packages any more and
- quit with an error asking the user to rename/copy of
packages
topackages.${release}
.
Personally, that's what I'd want as a user. What do you think?
I'm unsure yet though what to do about systems without systemd
I'd assume systemd
will always be there, IMO, as long as it is still "in-the-trend".
This can "un-complicate" things a bit, again IMO.
systemd is present only in more recent Debian releases, and also isn't necessary/relevant when creating a container based system (where systemd wouldn't even really work).
More generic answer: we shouldn't try to manage a global package list that fits every single Debian/release, instead the list should be per release and it should be possible to easily remove/add packages on demand.
systemd is present only in more recent Debian releases...
Ah, thx for the explain.
the list should be per release
or, still keep a global package list that is the base for every single Debian/release, then per release based fine tuning (adding their own if necessary).