summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-07-18 22:24:35 +0200
committerAaron Bauman <bman@gentoo.org>2019-07-20 15:37:41 -0400
commita286106599270d3d9dcbe0bb8731e1ee7729e9cf (patch)
tree064f143fea4569ebe3b4abf84dc374345ead1896
parentapp-text/aspell: Bump to version 0.60.7_rc2 (diff)
downloadgentoo-a286106599270d3d9dcbe0bb8731e1ee7729e9cf.tar.gz
gentoo-a286106599270d3d9dcbe0bb8731e1ee7729e9cf.tar.bz2
gentoo-a286106599270d3d9dcbe0bb8731e1ee7729e9cf.zip
net-analyzer/munin: remove unused file
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/12469 Signed-off-by: Aaron Bauman <bman@gentoo.org>
-rw-r--r--net-analyzer/munin/files/munin-node_init.d_2.0.736
1 files changed, 0 insertions, 36 deletions
diff --git a/net-analyzer/munin/files/munin-node_init.d_2.0.7 b/net-analyzer/munin/files/munin-node_init.d_2.0.7
deleted file mode 100644
index 7932e356f2e8..000000000000
--- a/net-analyzer/munin/files/munin-node_init.d_2.0.7
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-get_munin_config() {
- awk '$1 == "'$1'" { s=$2 } END { print s }' "$CFGFILE"
-}
-
-: ${CFGFILE:=/etc/munin/munin-node.conf}
-
-command=/usr/sbin/munin-node
-command_args="--config ${CFGFILE}"
-pidfile=$(get_munin_config pid_file)
-start_stop_daemon_args="--nicelevel ${NICE_LEVEL:-0} --wait 1500"
-extra_started_commands="reload"
-
-depend() {
- config "$CFGFILE"
-
- before cron
-
- [ "$(get_munin_config log_file)" = "Sys::Syslog" ] && \
- use logger
-}
-
-start_pre() {
- checkpath -d $(dirname ${pidfile})
-}
-
-reload() {
- ebegin "Reloading ${SERVICE}"
- kill -HUP `cat ${pidfile}`
- eend $?
-}
-
-# vim: filetype=gentoo-init-d: