-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-analyzer/nagios-plugin-check_systemd: add 4.1.1
Signed-off-by: Anders Larsson <anders.git@larsson.xyz>
- Loading branch information
1 parent
537c138
commit ced1715
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST nagios-plugin-check_systemd-4.1.0.tar.gz 78175 BLAKE2B 5ea78e8a70f059a0cd455867ec37578dab2ee503c40b5f953dc3b9a7d82085ca320f331df84fd1f5837b2f9f28f3ac91d2dbb4f619a6151f57cf241cbd4b9d17 SHA512 3b5412c18b23d63b707509e5a49f42ddb205c4304f2add798b135bc34aa06f4a53f509b0f6e1081a97f5e6dfed774b8b6c8c82f79571a371cc8afbdcc72f6473 | ||
DIST nagios-plugin-check_systemd-4.1.1.tar.gz 92051 BLAKE2B c9c5709162bf3b1296a38b33700013a25defd91b06368b8881d07aadaaeb2e08c6b1b95db38d80a7cc3e3c71e751618bb47eeeff9fa5629bcde03e908106d597 SHA512 5bf5beff84d64219fb58b69709ffb2d6f6431951169ec22b15a433fbe75f10737003f66f1efefbd7ddcae408187679e1d73524033a0c22837ecac3bb1ae6e8c7 | ||
EBUILD nagios-plugin-check_systemd-4.1.0.ebuild 711 BLAKE2B 2b7fcef6421bee4547b431ae716de49561110b7f6bd0aac1efae2b80ea7914fc2a45d9e5bd5bfaa302de71714eb0af006364f2973efe8c3798585d44c79e8fea SHA512 db34f29d368bd6bccb756e0535c0660a98790f9a77f87af54973a27e2cc07ad4c6dd1372dcbeb6d08809b11d1ecf27bef08f87968b9d81dbbf40b43a8e5439aa | ||
EBUILD nagios-plugin-check_systemd-4.1.1.ebuild 711 BLAKE2B 2b7fcef6421bee4547b431ae716de49561110b7f6bd0aac1efae2b80ea7914fc2a45d9e5bd5bfaa302de71714eb0af006364f2973efe8c3798585d44c79e8fea SHA512 db34f29d368bd6bccb756e0535c0660a98790f9a77f87af54973a27e2cc07ad4c6dd1372dcbeb6d08809b11d1ecf27bef08f87968b9d81dbbf40b43a8e5439aa | ||
MISC metadata.xml 311 BLAKE2B 9903cceb5d08ed7ed5a932ba40d06edacf075b046c0f631f3f5c8488536600138c2f91d3273d06426a730df5bcf2e9360ecc518094aced7db4c3bcd83969c639 SHA512 7768c35a7c0e5c1da1a9ec1ec43e032bc868ff896a5c0d8dcd23a1be807630df2923988a55701d82eeeb8d7fbe6041528e04dd5f695139acaf31fcefd080cd65 |
28 changes: 28 additions & 0 deletions
28
net-analyzer/nagios-plugin-check_systemd/nagios-plugin-check_systemd-4.1.1.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=poetry | ||
PYTHON_COMPAT=( python3_{9..13} ) | ||
|
||
inherit distutils-r1 | ||
|
||
MY_PN="${PN/nagios-plugin-/}" | ||
|
||
DESCRIPTION="check_systemd is a Nagios / Icinga monitoring plugin to check systemd" | ||
HOMEPAGE="https://github.com/Josef-Friedrich/check_systemd" | ||
SRC_URI="https://github.com/Josef-Friedrich/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
S="${WORKDIR}/${MY_PN}-${PV}" | ||
|
||
LICENSE="LGPL-2.1" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND="dev-python/nagiosplugin" | ||
|
||
src_install() { | ||
local plugindir="/usr/$(get_libdir)/nagios/plugins" | ||
exeinto "${plugindir}" | ||
newexe check_systemd.py check_systemd | ||
} |