grml / grml-debootstrap

wrapper around debootstrap
59 stars 27 forks source link

Drop package acpi-support-base? #76

Open mika opened 9 years ago

mika commented 9 years ago

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?

hartwork commented 9 years ago

packages.$release sounds like a plan.

mika commented 9 years ago

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.

hartwork commented 9 years ago

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

Personally, that's what I'd want as a user. What do you think?

suntong commented 5 years ago

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.

mika commented 5 years ago

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.

suntong commented 5 years ago

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).