#!/sbin/openrc-run # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of MIT 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} -z ${JOB_SIZE} eend $? } stop() { ebegin "Stopping beanstalkd" start-stop-daemon --stop --quiet \ --pidfile ${PIDFILE} \ --exec ${BEANSTALKD_BINARY} eend $? }