You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-metrics/portage-exporter/files/portage-exporter.initd

50 lines
1.3 KiB

#!/sbin/openrc-run
# Copyright 2016-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="Prometheus exporter for Portage packages"
EXPORTER_FLAGS=${EXPORTER_FLAGS:-""}
#EXPORTER_USER=${EXPORTER_USER:-"portage-exporter"}
#EXPORTER_GROUP=${EXPORTER_GROUP:-"portage-exporter"}
EXPORTER_PIDFILE=${EXPORTER_PIDFILE:-"/run/${RC_SVCNAME}.pid"}
EXPORTER_SSDARGS=${EXPORTER_SSDARGS:-"--wait 1000"}
EXPORTER_TERMTIMEOUT=${EXPORTER_TERMTIMEOUT:-"TERM/60/KILL/5"}
command="/usr/bin/portage-exporter"
command_args="${EXPORTER_FLAGS}"
command_background="true"
start_stop_daemon_args="${EXPORTER_SSDARGS}"
start_stop_daemon_args="${start_stop_daemon_args} ${EXPORTER_USER:+--user }${EXPORTER_USER}"
start_stop_daemon_args="${start_stop_daemon_args} ${EXPORTER_GROUP:+--group }${EXPORTER_GROUP}"
getconfig() {
local key="$1"
local value_default="$2"
local value=
if service_started; then
value="$(service_get_value "${key}")"
fi
if [ -z "${value}" ]; then
# Value not explicitly set
echo "${value_default}"
else
echo "${value}"
fi
return 0
}
pidfile="$(getconfig pidfile ${EXPORTER_PIDFILE})"
retry="$(getconfig retry ${EXPORTER_TERMTIMEOUT})"
depend() {
after net.lo loopback
}
start_post() {
service_set_value retry "${EXPORTER_TERMTIMEOUT}"
}