grafana-bin: bump to 10.2.3
This commit is contained in:
27
www-apps/grafana-bin/files/grafana-r1.confd
Normal file
27
www-apps/grafana-bin/files/grafana-r1.confd
Normal file
@@ -0,0 +1,27 @@
|
||||
# Config file for /etc/init.d/grafana
|
||||
|
||||
# The user to run your application as
|
||||
#GRAFANA_USER=grafana
|
||||
|
||||
# The group to run your application as
|
||||
#GRAFANA_GROUP=grafana
|
||||
|
||||
# Configuration file
|
||||
#GRAFANA_CONFIGFILE="/etc/grafana/${RC_SVCNAME}.ini"
|
||||
|
||||
# PID file
|
||||
#GRAFANA_PIDFILE="/run/${RC_SVCNAME}.pid"
|
||||
|
||||
# The grafana datadir
|
||||
#GRAFANA_DATADIR=/var/lib/grafana
|
||||
|
||||
# You can use this configuration option to pass additional options to the
|
||||
# start-stop-daemon, see start-stop-daemon(8) for more details.
|
||||
# Per default we wait 1000ms after we have started the service to ensure
|
||||
# that the daemon is really up and running.
|
||||
#GRAFANA_SSDARGS="--wait 1000"
|
||||
|
||||
# The termination timeout (start-stop-daemon parameter "retry") ensures
|
||||
# that the service will be terminated within a given time (60 + 5 seconds
|
||||
# per default) when you are stopping the service.
|
||||
#GRAFANA_TERMTIMEOUT="TERM/60/KILL/5"
|
||||
36
www-apps/grafana-bin/files/grafana.initd2
Normal file
36
www-apps/grafana-bin/files/grafana.initd2
Normal file
@@ -0,0 +1,36 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
GRAFANA_USER="${GRAFANA_USER:-"grafana"}"
|
||||
GRAFANA_GROUP="${GRAFANA_GROUP:-"grafana"}"
|
||||
GRAFANA_CONFIGFILE="${GRAFANA_CONFIGFILE:-"/etc/grafana/${RC_SVCNAME}.ini"}"
|
||||
GRAFANA_DATADIR="${GRAFANA_DATADIR:-"/var/lib/grafana"}"
|
||||
GRAFANA_LOGDIR="${GRAFANA_LOGDIR:-"/var/log/grafana"}"
|
||||
GRAFANA_PIDFILE="${GRAFANA_PIDFILE:-"/run/${RC_SVCNAME}.pid"}"
|
||||
GRAFANA_SSDARGS=${GRAFANA_SSDARGS:-"--wait 1000"}
|
||||
GRAFANA_TERMTIMEOUT=${GRFANA_TERMTIMEOUT:-"TERM/60/KILL/5"}
|
||||
|
||||
command="/usr/bin/grafana"
|
||||
command_args="server -homepath=/usr/share/grafana"
|
||||
command_args="${command_args} -config=\"${GRAFANA_CONFIGFILE}\""
|
||||
command_args="${command_args} cfg:default.paths.data=\"${GRAFANA_DATADIR}\""
|
||||
command_args="${command_args} cfg:default.paths.logs=\"${GRAFANA_LOGDIR}\""
|
||||
command_background="yes"
|
||||
pidfile="${GRAFANA_PIDFILE}"
|
||||
retry="${GRAFANA_TERMTIMEOUT}"
|
||||
start_stop_daemon_args="--user ${GRAFANA_USER}:${GRAFANA_GROUP} ${GRAFANA_SSDARGS}"
|
||||
|
||||
description="Grafana server, feature rich metrics dashboard and graph editor."
|
||||
|
||||
required_files="${GRAFANA_CONFIGFILE}"
|
||||
|
||||
depend() {
|
||||
need localmount
|
||||
}
|
||||
|
||||
start_pre() {
|
||||
checkpath -d -o "${GRAFANA_USER}:${GRAFANA_GROUP}" -m750 "${GRAFANA_DATADIR}" || return 1
|
||||
checkpath -d -o "${GRAFANA_USER}:${GRAFANA_GROUP}" -m750 "${GRAFANA_DATADIR}/dashboards" || return 1
|
||||
checkpath -d -o "${GRAFANA_USER}:${GRAFANA_GROUP}" -m750 "${GRAFANA_DATADIR}/plugins" || return 1
|
||||
}
|
||||
25
www-apps/grafana-bin/files/grafana.service
Normal file
25
www-apps/grafana-bin/files/grafana.service
Normal file
@@ -0,0 +1,25 @@
|
||||
[Unit]
|
||||
Description=Grafana
|
||||
Documentation=http://docs.grafana.org
|
||||
Wants=network-online.target
|
||||
After=network-online.target
|
||||
|
||||
[Service]
|
||||
User=grafana
|
||||
Group=grafana
|
||||
Type=simple
|
||||
Restart=on-failure
|
||||
RuntimeDirectory=grafana
|
||||
WorkingDirectory=/usr/share/grafana
|
||||
ExecStart=/usr/bin/grafana-server \
|
||||
--config=/etc/grafana/grafana.ini \
|
||||
--pidfile=/run/grafana/grafana.pid \
|
||||
cfg:default.paths.logs=/var/log/grafana \
|
||||
cfg:default.paths.data=/var/lib/grafana \
|
||||
cfg:default.paths.plugins=/var/lib/grafana/plugins
|
||||
LimitNOFILE=10000
|
||||
TimeoutStopSec=20
|
||||
UMask=0027
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Reference in New Issue
Block a user