Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 320704 Details for
Bug 333783
app-antivirus/clamav-0.96.1 fails to start when /var/run/clamav does not exist
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
app-antivirus/clamav/files/clamd.initd
file_333783.txt (text/plain), 4.03 KB, created by
Valery Kartel
on 2012-08-08 14:02:58 UTC
(
hide
)
Description:
app-antivirus/clamav/files/clamd.initd
Filename:
MIME Type:
Creator:
Valery Kartel
Created:
2012-08-08 14:02:58 UTC
Size:
4.03 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2012 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/files/clamd.initd,v 1.1 2012/08/07 18:09:58 eras Exp $ > >extra_commands="logfix" > >depend() { > use net > provide antivirus >} > >get_config() { > clamconf | sed 's/["=]//g' | \ > awk "{ > if(\$0==\"Config file: $1.conf\") S=1 > if(S==1&&\$0==\"\") { > print \"$3\" > exit > } > if(S==1&&\$1~\"^$2\$\") { > print \$2!=\"disabled\"?\$2:\"$3\" > exit > } > }" >} > >start() { > local clamd_socket=$(get_config clamd LocalSocket /tmp/clamd) > logfix > > if [ "${START_CLAMD}" = "yes" ]; then > checkpath --quiet \ > --owner $(get_config clamd User clamav):root \ > --directory `dirname ${clamd_socket}` > if [ -S "${clamd_socket}" ]; then > rm -f ${clamd_socket} > fi > ebegin "Starting clamd" > start-stop-daemon --start --quiet \ > --nicelevel ${CLAMD_NICELEVEL:-0} \ > --exec /usr/sbin/clamd > eend $? "Failed to start clamd" > fi > > if [ "${START_FRESHCLAM}" = "yes" ]; then > ebegin "Starting freshclam" > start-stop-daemon --start --quiet \ > --nicelevel ${FRESHCLAM_NICELEVEL:-0} \ > --exec /usr/bin/freshclam -- -d > retcode=$? > if [ ${retcode} = 1 ]; then > eend 0 > einfo "Virus databases are already up to date." > else > eend ${retcode} "Failed to start freshclam" > fi > fi > > if [ "${START_MILTER}" = "yes" ]; then > if [ -z "${MILTER_CONF_FILE}" ]; then > MILTER_CONF_FILE="/etc/clamav-milter.conf" > fi > > ebegin "Starting clamav-milter" > start-stop-daemon --start --quiet \ > --nicelevel ${MILTER_NICELEVEL:-0} \ > --exec /usr/sbin/clamav-milter -- -c ${MILTER_CONF_FILE} > eend $? "Failed to start clamav-milter" > fi >} > >stop() { > if [ "${START_CLAMD}" = "yes" ]; then > ebegin "Stopping clamd" > start-stop-daemon --stop --quiet --name clamd > eend $? "Failed to stop clamd" > fi > if [ "${START_FRESHCLAM}" = "yes" ]; then > ebegin "Stopping freshclam" > start-stop-daemon --stop --quiet --name freshclam > eend $? "Failed to stop freshclam" > fi > if [ "${START_MILTER}" = "yes" ]; then > ebegin "Stopping clamav-milter" > start-stop-daemon --stop --quiet --name clamav-milter > eend $? "Failed to stop clamav-milter" > fi >} > >logfix() { > if [ "${START_CLAMD}" = "yes" ]; then > # fix clamd log permissions > # (might be clobbered by logrotate or something) > local logfile=$(get_config clamd LogFile) > if [ -n "${logfile}" ]; then > checkpath --quiet \ > --owner $(get_config clamd User clamav):root \ > --mode 640 \ > --file ${logfile} > fi > fi > > if [ "${START_FRESHCLAM}" = "yes" ]; then > # fix freshclam log permissions > # (might be clobbered by logrotate or something) > local logfile=$(get_config freshclam UpdateLogFile) > if [ -n "${logfile}" ]; then > checkpath --quiet \ > --owner $(get_config freshclam DatabaseOwner clamav):root \ > --mode 640 \ > --file ${logfile} > fi > fi >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 333783
:
243843
|
244543
|
317113
| 320704