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.
gentoo-overlay/app-antivirus/clamav/files/clamonacc.initd

19 lines
437 B

#!/sbin/openrc-run
command="/usr/sbin/clamonacc"
pidfile="/run/${RC_SVCNAME}.pid"
# clamonacc doesn't support a PID file at the moment, so we
# run it in the foreground and let OpenRC background it.
#
# https://bugzilla.clamav.net/show_bug.cgi?id=12595
#
command_args="--foreground"
command_background=true
depend() {
# Unlike the milter, the on-access scanner will simply fail to start
# until clamd is available.
need clamd
}