diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-25 07:34:47 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-25 07:55:48 +0000 |
commit | 9994bb8b5c328ba14a44119d774fba884c74faaa (patch) | |
tree | 3726d173a73a435b6b1551bff8cd6962c541ec83 /testing/beanstalkd/beanstalkd.initd | |
parent | de9872306f88b5f382d832d9ba200443364b5697 (diff) | |
download | aports-9994bb8b5c328ba14a44119d774fba884c74faaa.tar.bz2 aports-9994bb8b5c328ba14a44119d774fba884c74faaa.tar.xz |
community/beanstalkd: moved from testing
Diffstat (limited to 'testing/beanstalkd/beanstalkd.initd')
-rw-r--r-- | testing/beanstalkd/beanstalkd.initd | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/testing/beanstalkd/beanstalkd.initd b/testing/beanstalkd/beanstalkd.initd deleted file mode 100644 index 475f102568..0000000000 --- a/testing/beanstalkd/beanstalkd.initd +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of MIT -# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/files/init-1.9,v 1.1 2014/03/31 06:34:28 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} -z ${JOB_SIZE} - eend $? -} - -stop() { - ebegin "Stopping beanstalkd" - start-stop-daemon --stop --quiet \ - --pidfile ${PIDFILE} \ - --exec ${BEANSTALKD_BINARY} - eend $? -} - |