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:
parent
63399dab6e
commit
8f763ee8b1
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue