Bugfix: Add missing package when systemd is active

The package might be missing when building with a minimal configuration,
as recommended in the Live Manual, the example 'Base image' scenario:
'lb config --apt-recommends false --debootstrap-options "--variant=minbase"'
This commit is contained in:
Roland Clobus 2022-01-08 09:47:55 +01:00
parent 63399dab6e
commit 8f763ee8b1
No known key found for this signature in database
GPG Key ID: 62C57C6AA61495BD
1 changed files with 1 additions and 1 deletions

View File

@ -1368,7 +1368,7 @@ if [ ! -e "${LIVE_PKG_LIST}" ]; then
NEEDED_PACKAGES="live-boot live-config"
case "${LB_INITSYSTEM}" in
systemd)
NEEDED_PACKAGES="${NEEDED_PACKAGES} live-config-systemd"
NEEDED_PACKAGES="${NEEDED_PACKAGES} live-config-systemd systemd-sysv"
;;
sysvinit)