summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2016-12-22 09:22:47 +0100
committerPatrick Lauer <patrick@gentoo.org>2016-12-22 09:40:07 +0100
commitc733cae62453824fe4e7f91944bef24a8f40f9e9 (patch)
treeee1e549947e89838429b8ceacf5f4ad17008ad69 /app-admin/aerospike-amc-community/files
parentnet-misc/curl: restore Prefix keywords, bug #597760 (diff)
downloadgentoo-c733cae62453824fe4e7f91944bef24a8f40f9e9.tar.gz
gentoo-c733cae62453824fe4e7f91944bef24a8f40f9e9.tar.bz2
gentoo-c733cae62453824fe4e7f91944bef24a8f40f9e9.zip
app-admin/aerospike-amc-community: Fix init script stop handling
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-admin/aerospike-amc-community/files')
-rw-r--r--app-admin/aerospike-amc-community/files/amc.init225
1 files changed, 25 insertions, 0 deletions
diff --git a/app-admin/aerospike-amc-community/files/amc.init2 b/app-admin/aerospike-amc-community/files/amc.init2
new file mode 100644
index 000000000000..6ec70eb1eb16
--- /dev/null
+++ b/app-admin/aerospike-amc-community/files/amc.init2
@@ -0,0 +1,25 @@
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/files/mongodb.initd-r2,v 1.2 2014/05/26 08:03:45 ultrabug Exp $
+
+config_file=${config_file:-/etc/amc/config/gunicorn_config.py}
+run_dir=${run_dir:-/run}
+
+command="/usr/bin/gunicorn"
+command_args="--daemon --config ${config_file} flaskapp:app"
+command_progress="true"
+retry='TERM/30/KILL/5'
+pidfile=${run_dir}/${SVCNAME}.pid
+user=${user:-root}
+group=${group:-root}
+start_stop_daemon_args="--user ${user} --group ${group}"
+required_files="${config_file}"
+
+depend() {
+ use net
+}
+
+start_post() {
+ ewaitfile 60 "${pidfile}"
+}