26 lines
No EOL
604 B
Groff
26 lines
No EOL
604 B
Groff
#!/sbin/runscript
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of MIT
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/files/init-1.8,v 1.1 2012/11/05 07:32:17 patrick Exp $
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting beanstalkd"
|
|
/sbin/start-stop-daemon --start \
|
|
--background \
|
|
--pidfile ${PIDFILE} --make-pidfile \
|
|
--exec ${BEANSTALKD_BINARY} \
|
|
-- -b ${DATADIR} -p ${PORT} -l ${ADDR} -u ${USER}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping beanstalkd"
|
|
start-stop-daemon --stop --quiet \
|
|
--pidfile ${PIDFILE} \
|
|
--exec ${BEANSTALKD_BINARY}
|
|
eend $?
|
|
} |