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

  1. #!/bin/bash
  2. #
  3. # ROCK Linux /etc/rc.d/init.d/clamd
  4. #
  5. # Desc: ClamAV Daemon
  6. # Runlevel: 61 rcX
  7. #
  8. main_begin
  9. block_begin(start, `Starting clamd.')
  10. check(`D_prefix/sbin/clamd')
  11. block_end
  12. block_begin(stop, `Stopping clamd.')
  13. check(`killall clamd')
  14. block_end
  15. main_end