mirror of
https://git.yoctoproject.org/poky
synced 2026-01-30 21:38:43 +01:00
systemd: fix PN-container package splitting
- Fix package splitting for services installed with systemd-container. Some files have been installed with systemd package instead of systemd-container package. (*.service, *.socket, *.html...) - Split journal-upload, journal-remote, journal-gatewayd into separate packages. These services are not strictly related to nspawn containers. Remote logging is now possible without installing all the container stuff. - systemd-container package rrecommends journal-upload, journal- remote, journal-gatewayd packages. (From OE-Core rev: d31ff84a5f4723700ed48fd14ace81d3c707065e) Signed-off-by: Adrian Freihofer <adrian.freihofer@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2cba73f2b1
commit
d0b2cedfb0
@@ -240,6 +240,9 @@ do_install() {
|
||||
# Delete journal README, as log can be symlinked inside volatile.
|
||||
rm -f ${D}/${localstatedir}/log/README
|
||||
|
||||
# journal-remote creates this at start
|
||||
rm -rf ${D}/${localstatedir}/log/journal/remote
|
||||
|
||||
install -d ${D}${systemd_unitdir}/system/graphical.target.wants
|
||||
install -d ${D}${systemd_unitdir}/system/multi-user.target.wants
|
||||
install -d ${D}${systemd_unitdir}/system/poweroff.target.wants
|
||||
@@ -310,19 +313,35 @@ PACKAGES =+ "\
|
||||
${PN}-zsh-completion \
|
||||
${PN}-xorg-xinitrc \
|
||||
${PN}-container \
|
||||
${PN}-journal-gatewayd \
|
||||
${PN}-journal-upload \
|
||||
${PN}-journal-remote \
|
||||
${PN}-extra-utils \
|
||||
"
|
||||
|
||||
SUMMARY_${PN}-container = "Tools for containers and VMs"
|
||||
DESCRIPTION_${PN}-container = "Systemd tools to spawn and manage containers and virtual machines."
|
||||
|
||||
SYSTEMD_PACKAGES = "${@bb.utils.contains('PACKAGECONFIG', 'binfmt', '${PN}-binfmt', '', d)}"
|
||||
SUMMARY_${PN}-journal-gatewayd = "HTTP server for journal events"
|
||||
DESCRIPTION_${PN}-journal-gatewayd = "systemd-journal-gatewayd serves journal events over the network. Clients must connect using HTTP. The server listens on port 19531 by default."
|
||||
|
||||
SUMMARY_${PN}-journal-upload = "Send journal messages over the network"
|
||||
DESCRIPTION_${PN}-journal-upload = "systemd-journal-upload uploads journal entries to a specified URL."
|
||||
|
||||
SUMMARY_${PN}-journal-remote = "Receive journal messages over the network"
|
||||
DESCRIPTION_${PN}-journal-remote = "systemd-journal-remote is a command to receive serialized journal events and store them to journal files."
|
||||
|
||||
SYSTEMD_PACKAGES = "${@bb.utils.contains('PACKAGECONFIG', 'binfmt', '${PN}-binfmt', '', d)} \
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '${PN}-journal-gatewayd', '', d)} \
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'journal-upload', '${PN}-journal-upload', '', d)} \
|
||||
${@bb.utils.contains('PACKAGECONFIG', '', '${PN}-journal-remote', '', d)} \
|
||||
"
|
||||
SYSTEMD_SERVICE_${PN}-binfmt = "systemd-binfmt.service"
|
||||
|
||||
USERADD_PACKAGES = "${PN} ${PN}-extra-utils"
|
||||
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '--system -d / -M --shell /bin/nologin systemd-journal-gateway;', '', d)}"
|
||||
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '--system -d / -M --shell /bin/nologin systemd-journal-remote;', '', d)}"
|
||||
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'journal-upload', '--system -d / -M --shell /bin/nologin systemd-journal-upload;', '', d)}"
|
||||
USERADD_PACKAGES = "${PN} ${PN}-extra-utils ${PN}-journal-gateway ${PN}-journal-upload ${PN}-journal-remote"
|
||||
USERADD_PARAM_${PN}-journal-gateway += "${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '--system -d / -M --shell /bin/nologin systemd-journal-gateway;', '', d)}"
|
||||
USERADD_PARAM_${PN}-journal-remote += "${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '--system -d / -M --shell /bin/nologin systemd-journal-remote;', '', d)}"
|
||||
USERADD_PARAM_${PN}-journal-upload += "${@bb.utils.contains('PACKAGECONFIG', 'journal-upload', '--system -d / -M --shell /bin/nologin systemd-journal-upload;', '', d)}"
|
||||
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'timesyncd', '--system -d / -M --shell /bin/nologin systemd-timesync;', '', d)}"
|
||||
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'networkd', '--system -d / -M --shell /bin/nologin systemd-network;', '', d)}"
|
||||
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'coredump', '--system -d / -M --shell /bin/nologin systemd-coredump;', '', d)}"
|
||||
@@ -363,6 +382,29 @@ RRECOMMENDS_${PN}-binfmt = "kernel-module-binfmt-misc"
|
||||
|
||||
RRECOMMENDS_${PN}-vconsole-setup = "kbd kbd-consolefonts kbd-keymaps"
|
||||
|
||||
|
||||
FILES_${PN}-journal-gatewayd = "${rootlibexecdir}/systemd/systemd-journal-gatewayd \
|
||||
${systemd_system_unitdir}/systemd-journal-gatewayd.service \
|
||||
${systemd_system_unitdir}/systemd-journal-gatewayd.socket \
|
||||
${systemd_system_unitdir}/sockets.target.wants/systemd-journal-gatewayd.socket \
|
||||
${datadir}/systemd/gatewayd/browse.html \
|
||||
"
|
||||
SYSTEMD_SERVICE_${PN}-journal-gatewayd = "systemd-journal-gatewayd.socket"
|
||||
|
||||
FILES_${PN}-journal-upload = "${rootlibexecdir}/systemd/systemd-journal-upload \
|
||||
${systemd_system_unitdir}/systemd-journal-upload.service \
|
||||
${sysconfdir}/systemd/journal-upload.conf \
|
||||
"
|
||||
SYSTEMD_SERVICE_${PN}-journal-upload = "systemd-journal-upload.service"
|
||||
|
||||
FILES_${PN}-journal-remote = "${rootlibexecdir}/systemd/systemd-journal-remote \
|
||||
${sysconfdir}/systemd/journal-remote.conf \
|
||||
${systemd_system_unitdir}/systemd-journal-remote.service \
|
||||
${systemd_system_unitdir}/systemd-journal-remote.socket \
|
||||
"
|
||||
SYSTEMD_SERVICE_${PN}-remote = "systemd-journal-remote.socket"
|
||||
|
||||
|
||||
FILES_${PN}-container = "${sysconfdir}/dbus-1/system.d/org.freedesktop.import1.conf \
|
||||
${sysconfdir}/dbus-1/system.d/org.freedesktop.machine1.conf \
|
||||
${base_bindir}/machinectl \
|
||||
@@ -381,9 +423,6 @@ FILES_${PN}-container = "${sysconfdir}/dbus-1/system.d/org.freedesktop.import1.c
|
||||
${systemd_system_unitdir}/var-lib-machines.mount \
|
||||
${rootlibexecdir}/systemd/systemd-import \
|
||||
${rootlibexecdir}/systemd/systemd-importd \
|
||||
${rootlibexecdir}/systemd/systemd-journal-gatewayd \
|
||||
${rootlibexecdir}/systemd/systemd-journal-remote \
|
||||
${rootlibexecdir}/systemd/systemd-journal-upload \
|
||||
${rootlibexecdir}/systemd/systemd-machined \
|
||||
${rootlibexecdir}/systemd/systemd-pull \
|
||||
${exec_prefix}/lib/tmpfiles.d/systemd-nspawn.conf \
|
||||
@@ -397,6 +436,12 @@ FILES_${PN}-container = "${sysconfdir}/dbus-1/system.d/org.freedesktop.import1.c
|
||||
${datadir}/polkit-1/actions/org.freedesktop.machine1.policy \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN}-container += "\
|
||||
${PN}-journal-upload \
|
||||
${PN}-journal-remote \
|
||||
${PN}-journal-gatewayd \
|
||||
"
|
||||
|
||||
FILES_${PN}-extra-utils = "\
|
||||
${base_bindir}/systemd-escape \
|
||||
${base_bindir}/systemd-inhibit \
|
||||
|
||||
Reference in New Issue
Block a user