Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 474754 | Differences between
and this patch

Collapse All | Expand All

(-)a/conf.d/beanstalkd (+1 lines)
Lines 4-9 Link Here
4
4
5
BEANSTALKD_BINARY="/usr/bin/beanstalkd"
5
BEANSTALKD_BINARY="/usr/bin/beanstalkd"
6
PIDFILE="/var/run/beanstalkd.pid"
6
PIDFILE="/var/run/beanstalkd.pid"
7
JOB_SIZE="2097152"
7
8
8
# User to run as
9
# User to run as
9
USER="beanstalk"
10
USER="beanstalk"
(-)a/init.d/beanstalkd (-2 / +2 lines)
Lines 13-19 start() { Link Here
13
        --background \
13
        --background \
14
		--pidfile ${PIDFILE} --make-pidfile \
14
		--pidfile ${PIDFILE} --make-pidfile \
15
		--exec ${BEANSTALKD_BINARY} \
15
		--exec ${BEANSTALKD_BINARY} \
16
		-- -b ${DATADIR} -p ${PORT} -l ${ADDR} -u ${USER}
16
		-- -b ${DATADIR} -p ${PORT} -l ${ADDR} -u ${USER} -z ${JOB_SIZE}
17
	eend $?
17
	eend $?
18
}
18
}
19
19
Lines 23-26 stop() { Link Here
23
		--pidfile ${PIDFILE} \
23
		--pidfile ${PIDFILE} \
24
		--exec ${BEANSTALKD_BINARY}
24
		--exec ${BEANSTALKD_BINARY}
25
	eend $?
25
	eend $?
26
}
26
}

Return to bug 474754