diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-01-06 03:11:56 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-01-06 03:11:56 +0100 |
commit | ba1d5596354e3299d5b9b995bb0fa9b3bdd285cc (patch) | |
tree | a3333a43f088cc4920be303401584c6f0fdcbffb | |
parent | kmsg-syslogd: remove kmsg-syslogd, since it's entirely obsoleted and replaced... (diff) | |
download | systemd-ba1d5596354e3299d5b9b995bb0fa9b3bdd285cc.tar.gz systemd-ba1d5596354e3299d5b9b995bb0fa9b3bdd285cc.tar.bz2 systemd-ba1d5596354e3299d5b9b995bb0fa9b3bdd285cc.zip |
journald: start the journal after the syslog socket, so that the syslog socket queues syslog messages from early boot on
-rw-r--r-- | units/systemd-journald.service.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/units/systemd-journald.service.in b/units/systemd-journald.service.in index 2cfc68482..08858f38d 100644 --- a/units/systemd-journald.service.in +++ b/units/systemd-journald.service.in @@ -12,12 +12,13 @@ Description=Journal Service DefaultDependencies=no Requires=systemd-journald.socket After=systemd-journald.socket +After=syslog.socket [Service] ExecStart=@rootlibexecdir@/systemd-journald NotifyAccess=all StandardOutput=null -#CapabilityBoundingSet=CAP_SYS_ADMIN CAP_SETUID CAP_SETGID +#CapabilityBoundingSet=CAP_SYS_ADMIN CAP_SETUID CAP_SETGID CAP_DAC_OVERRIDE # Increase the default a bit in order to allow many simultaneous # services being run since we keep one fd open per service. |