|
|
|
|
|
by Sanddancer
3818 days ago
|
|
Because in BSD, that consolidation and standardization is optional by design, with everything given knobs to disable it. For example, I don't like FreeBSD's syslog -- I prefer syslog-ng. Therefore, I have the following in my /etc/rc.conf #use syslog-ng instead of the built-in syslog
syslog_ng_enable="YES"
syslogd_enable="NO"
and as such, I have my own syslog running. Systemd, on the other hand, disabling their syslog is simply not an option, as is the case with so many components that it encompasses.
The BSD's philosophy is indeed to have a cohesive system, however, they recognize that they don't always have the best defaults for every situation, and thus make it easy, and supportable, to set options the way you want. |
|
You can set Storage=none and ForwardToSyslog=yes in /etc/systemd/journald.conf [0].
[0] https://wiki.archlinux.org/index.php/Syslog-ng#syslog-ng_and...