rsyslog.service 435 B

12345678910111213141516171819
  1. [Unit]
  2. Description=System Logging Service
  3. Requires=syslog.socket
  4. Documentation=man:rsyslogd(8)
  5. Documentation=https://www.rsyslog.com/doc/
  6. [Service]
  7. Type=notify
  8. ExecStart=/usr/sbin/rsyslogd -n -iNONE
  9. StandardOutput=null
  10. Restart=on-failure
  11. # Increase the default a bit in order to allow many simultaneous
  12. # files to be monitored, we might need a lot of fds.
  13. LimitNOFILE=16384
  14. [Install]
  15. WantedBy=multi-user.target
  16. Alias=syslog.service