You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
174 B
Bash
11 lines
174 B
Bash
8 years ago
|
#!/bin/sh
|
||
|
|
||
|
# Bootstrap the database if clamav is running for the first time
|
||
|
[ -f /data/main.cvd ] || freshclam
|
||
|
|
||
|
# Run the update daemon
|
||
|
freshclam -d -c 6
|
||
|
|
||
|
# Run clamav
|
||
|
clamd
|