mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-06 15:43:02 +02:00
On every system reconf (initctl reload) the .conf files are evaluated again and log notices about skipping alternative syslogd enties are logged. We know that we run the udevd dependend syslogd entry, and everything else basically in runlevel S depends on it, so not much else would work if syslogd didn't start. So we can safely set 'nowarn'. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
13 lines
727 B
Plaintext
13 lines
727 B
Plaintext
# This service provides the same sync condition as the BusyBox syslogd,
|
|
# which allows us to create a barrier at boot for services that might
|
|
# otherwise leak log messages to console.
|
|
|
|
# Use <pid/syslogd> as barrier for other system tasks and service that
|
|
# rely on modules, firmware, and device nodes to be ready.
|
|
service if:udevd nowarn env:-/etc/default/sysklogd <run/udevadm:5/success> \
|
|
[S0123456789] syslogd -F $SYSLOGD_ARGS -- System log daemon
|
|
service if:mdev nowarn env:-/etc/default/sysklogd <run/coldplug/success> \
|
|
[S0123456789] syslogd -F $SYSLOGD_ARGS -- System log daemon
|
|
service if:mdevd nowarn env:-/etc/default/sysklogd <run/coldplug/success> \
|
|
[S0123456789] syslogd -F $SYSLOGD_ARGS -- System log daemon
|