diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-11-03 21:28:28 +0100 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-11-13 16:16:42 -0500 |
commit | ed7013280bfdad13c1302093b8eaeda6bacf86a4 (patch) | |
tree | c977675249ef1cfe8f9d370cebcf810a7770218a /app-admin | |
parent | app-admin/cpulimit: remove unused file (diff) | |
download | gentoo-ed7013280bfdad13c1302093b8eaeda6bacf86a4.tar.gz gentoo-ed7013280bfdad13c1302093b8eaeda6bacf86a4.tar.bz2 gentoo-ed7013280bfdad13c1302093b8eaeda6bacf86a4.zip |
app-admin/aerospike-amc-community: remove unused files
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18123
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/aerospike-amc-community/files/amc.init | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/app-admin/aerospike-amc-community/files/amc.init b/app-admin/aerospike-amc-community/files/amc.init deleted file mode 100644 index 06c14001f5d6..000000000000 --- a/app-admin/aerospike-amc-community/files/amc.init +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2014 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_background="true" -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}" -} |