#!/bin/sh # description: the ClamAV daemon case "$1" in start) echo "Starting the ClamAV daemon (clamd)..." /usr/local/sbin/clamd ;; stop) echo "Stopping the ClamAV daemon (clamd)..." kill `cat /var/run/clamd.pid` ;; restart) echo "Restarting the ClamAV daemon (clamd)..." clamdctl stop clamdctl start ;; help) cat <