summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2020-12-03 08:24:58 +0200
committerJoonas Niilola <juippis@gentoo.org>2020-12-03 08:24:58 +0200
commitcb4af983c8bcf74ad082e69267ba3c4074e25a5d (patch)
tree1151e520eda7beae725c6d76f0d4223c190a7c3f /net-analyzer
parentdev-util/jenkins-bin: add 2.263.1 (diff)
downloadgentoo-cb4af983c8bcf74ad082e69267ba3c4074e25a5d.tar.gz
gentoo-cb4af983c8bcf74ad082e69267ba3c4074e25a5d.tar.bz2
gentoo-cb4af983c8bcf74ad082e69267ba3c4074e25a5d.zip
net-analyzer/nagios-plugins-flameeyes: remove last-rited package
Bug: https://bugs.gentoo.org/752462 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/nagios-plugins-flameeyes/metadata.xml19
-rw-r--r--net-analyzer/nagios-plugins-flameeyes/nagios-plugins-flameeyes-9999.ebuild49
2 files changed, 0 insertions, 68 deletions
diff --git a/net-analyzer/nagios-plugins-flameeyes/metadata.xml b/net-analyzer/nagios-plugins-flameeyes/metadata.xml
deleted file mode 100644
index 7bf85b98253c..000000000000
--- a/net-analyzer/nagios-plugins-flameeyes/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sysadmin@gentoo.org</email>
- <name>Gentoo Sysadmin Project</name>
- </maintainer>
- <use>
- <flag name="smart">
- Install <pkg>sys-apps/smartmontools</pkg> required for
- S.M.A.R.T. disk monitoring. Disabling the flag removes the
- plugin file. This plugin also requires the sudo flag to be
- enable.
- </flag>
- </use>
- <upstream>
- <remote-id type="github">Flameeyes/nagios-plugins-flameeyes</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-analyzer/nagios-plugins-flameeyes/nagios-plugins-flameeyes-9999.ebuild b/net-analyzer/nagios-plugins-flameeyes/nagios-plugins-flameeyes-9999.ebuild
deleted file mode 100644
index 351eac1d17cc..000000000000
--- a/net-analyzer/nagios-plugins-flameeyes/nagios-plugins-flameeyes-9999.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit git-r3 multilib
-
-EGIT_REPO_URI="https://github.com/Flameeyes/${PN}.git"
-SRC_URI=""
-KEYWORDS=""
-
-DESCRIPTION="Flameeyes's custom Nagios/Icinga plugins"
-HOMEPAGE="https://github.com/Flameeyes/nagios-plugins-flameeyes"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="smart samba"
-
-RDEPEND="
- dev-perl/Monitoring-Plugin
- sys-apps/portage
- dev-perl/Time-Duration
- dev-perl/TimeDate
- smart? (
- sys-apps/smartmontools
- app-admin/sudo
- )
- samba? ( dev-perl/Filesys-SmbClient )"
-DEPEND=""
-
-src_compile() {
- cat - > "${T}"/50${PN} <<EOF
-Cmnd_Alias NAGIOS_PLUGINS_FLAMEEYES_CMDS = /usr/sbin/smartctl
-User_Alias NAGIOS_PLUGINS_FLAMEEYES_USERS = nagios, icinga
-
-NAGIOS_PLUGINS_FLAMEEYES_USERS ALL=(root) NOPASSWD: NAGIOS_PLUGINS_FLAMEEYES_CMDS
-EOF
-}
-
-src_install() {
- insinto /etc/sudoers.d
- doins "${T}"/50${PN}
-
- dodir /usr/$(get_libdir)/nagios/plugins/flameeyes
- cp -Rp $(find . -type d -mindepth 1 -maxdepth 1 -not -name .git) \
- "${D}/usr/$(get_libdir)/nagios/plugins/flameeyes" || die
-
- dodoc README.md
-}