17 lines
530 B
Plaintext
17 lines
530 B
Plaintext
|
|
################################################################################
|
||
|
|
### freshclam.svc created by Puppet, manual changes will be overwritten!!! ###
|
||
|
|
################################################################################
|
||
|
|
|
||
|
|
[Unit]
|
||
|
|
Description = ClamAV Scanner
|
||
|
|
After = network.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type = forking
|
||
|
|
#if you want to update database automatically more than once a day change the number 1
|
||
|
|
ExecStart = /usr/bin/freshclam -d -c 1
|
||
|
|
Restart = on-failure
|
||
|
|
PrivateTmp =true
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|