21 lines
580 B
SYSTEMD
21 lines
580 B
SYSTEMD
|
[Unit]
|
||
|
# New service file specifically for SME
|
||
|
# Copied from clamav install file
|
||
|
Description=clamd scanner (%i) daemon
|
||
|
Documentation=man:clamd(8) man:clamd.conf(5) https://www.clamav.net/documents/
|
||
|
After=syslog.target nss-lookup.target network.target
|
||
|
|
||
|
[Service]
|
||
|
Type = forking
|
||
|
ExecStartPre=/sbin/e-smith/service-status clamd
|
||
|
ExecStartPre=-/sbin/e-smith/expand-template /etc/clamd.d/scan.conf
|
||
|
ExecStart=/usr/sbin/clamd -c /etc/clamd.d/scan.conf
|
||
|
# Reload the database
|
||
|
ExecReload=/bin/kill -USR2 $MAINPID
|
||
|
Restart=on-failure
|
||
|
TimeoutStartSec=420
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=sme-server.target
|
||
|
|