diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-11-15 19:36:33 +0100 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-11-20 08:25:53 -0500 |
commit | 37d674b9cc15afcdad4b6b637a2e7766c240fbf9 (patch) | |
tree | ae0106f252151185dfe5dacc06240af7440e6701 /app-admin/aerospike-amc-community | |
parent | dev-util/bpftrace: remove unused patch (diff) | |
download | gentoo-37d674b9cc15afcdad4b6b637a2e7766c240fbf9.tar.gz gentoo-37d674b9cc15afcdad4b6b637a2e7766c240fbf9.tar.bz2 gentoo-37d674b9cc15afcdad4b6b637a2e7766c240fbf9.zip |
app-admin/aerospike-amc-community: remove unused file
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18269
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-admin/aerospike-amc-community')
-rw-r--r-- | app-admin/aerospike-amc-community/files/amc.init2 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app-admin/aerospike-amc-community/files/amc.init2 b/app-admin/aerospike-amc-community/files/amc.init2 deleted file mode 100644 index 3e3bdd9920a3..000000000000 --- a/app-admin/aerospike-amc-community/files/amc.init2 +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -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}" -} |