18 lines
462 B
SYSTEMD
18 lines
462 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=Grep through system log files and mail them to the sysadmin
|
||
|
|
After=logrotate.service
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
# added automatically, for details please see
|
||
|
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
||
|
|
ProtectHome=true
|
||
|
|
ProtectHostname=true
|
||
|
|
ProtectKernelTunables=true
|
||
|
|
ProtectKernelModules=true
|
||
|
|
ProtectControlGroups=true
|
||
|
|
RestrictRealtime=true
|
||
|
|
# end of automatic additions
|
||
|
|
|
||
|
|
Type=oneshot
|
||
|
|
ExecStart=/usr/share/logdigest/logdigest
|