mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-03 06:13:02 +02:00
Some critical services must never be stopped, and with the unfortunate separation of runlevel S and 0 in Finit recently, all affected service definitions must be updated. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
9 lines
395 B
Plaintext
9 lines
395 B
Plaintext
# BusyBox syslogd + klogd
|
|
|
|
# We want syslogd to always run, never be stopped, regardless of runlevel
|
|
# so it can send to any remote syslog server the user has set up.
|
|
service [S0123456789] <!> syslogd -n -s 512 -b 3 -t -- System log daemon
|
|
|
|
# klogd depends on syslogd, but BusyBox syslogd doesn't create a PID file to sync with
|
|
service [S0123456789] <!pid/syslogd> klogd -n -- Kernel log daemon
|