From 707b974d76965e94f1f8ec41c954ebad21eca171 Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Mon, 16 Sep 2019 20:16:44 +0200 Subject: [PATCH] busybox: add workaround for systemd issue 867 journald on systemd versions up to 242 don't close the persistent journal files on shutdown which leads to a harmless but annoying Failed unmounting message during shutdown https://github.com/systemd/systemd/issues/867 Set LazyUnmount=yes on the persistent log mount unit as a temporary workaround until systemd is updated to 243 or newer. Signed-off-by: Matthias Reichl --- packages/sysutils/busybox/system.d/var-log.mount | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/sysutils/busybox/system.d/var-log.mount b/packages/sysutils/busybox/system.d/var-log.mount index e6b6ebf88b..3acdd0a6de 100644 --- a/packages/sysutils/busybox/system.d/var-log.mount +++ b/packages/sysutils/busybox/system.d/var-log.mount @@ -11,3 +11,4 @@ ConditionPathExists=|/storage/.cache/debug.libreelec What=/storage/.cache/log Where=/var/log Options=bind +LazyUnmount=yes