mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
299 B

#!/bin/bash
#
# ROCK Linux /etc/rc.d/init.d/clamd
#
# Desc: ClamAV Daemon
# Runlevel: 61 rcX
#
main_begin
block_begin(start, `Starting clamd.')
check(`D_prefix/sbin/clamd')
block_end
block_begin(stop, `Stopping clamd.')
check(`killall clamd')
block_end
main_end