From fd366e78f692e90956b7155263247d2e4d9f0537 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Thu, 5 Oct 2023 07:57:58 +0200 Subject: [PATCH] package/skeleton-init-finit: rename condition set by sysklogd -> syslogd The sysklogd and BusyBox syslogd can not run at the same time. Since they provide the same service we standardize on them providing . Also, ensure syslogd does not start until the fifth udevadm has completed. This creates a barrier preventing other run/task/services from starting too early. Thus guaranteeing a proper boot order. Signed-off-by: Joachim Wiberg --- .../skeleton/etc/finit.d/available/sysklogd.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/skeleton-init-finit/skeleton/etc/finit.d/available/sysklogd.conf b/package/skeleton-init-finit/skeleton/etc/finit.d/available/sysklogd.conf index eba0bcef..8487cd8f 100644 --- a/package/skeleton-init-finit/skeleton/etc/finit.d/available/sysklogd.conf +++ b/package/skeleton-init-finit/skeleton/etc/finit.d/available/sysklogd.conf @@ -1 +1,2 @@ -service name:sysklogd [S0123456789] env:-/etc/default/sysklogd syslogd -F $SYSLOGD_ARGS -- System log daemon +service name:syslogd env:-/etc/default/sysklogd \ + [S0123456789] syslogd -F $SYSLOGD_ARGS -- System log daemon