From 8f763ee8b1c2d24a3e206c9a41a669d7e70f4b4e Mon Sep 17 00:00:00 2001 From: Roland Clobus Date: Sat, 8 Jan 2022 09:47:55 +0100 Subject: [PATCH] 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"' --- scripts/build/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/config b/scripts/build/config index 804401740..18cd65089 100755 --- a/scripts/build/config +++ b/scripts/build/config @@ -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)