-
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_smart: add 6.15.0
Signed-off-by: Anders Larsson <anders.git@larsson.xyz>
- Loading branch information
1 parent
a698f4b
commit f7c0111
Showing
2 changed files
with
29 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_smart-6.14.3.tar.gz 24801 BLAKE2B b6f1e8afae5ac7ccebcda45f656f060ad3a8e77527d3b3844faadef1bb817c583a1bd576d87930f2db6dcc393644be77f7cb1d91e3e7afc8be73e24068efc42b SHA512 3c6546f81600a2894b8eb010b2ba8ee0cc3ce5456486861757794d72f88a13cf7896d41685beb08249687176fa4a936e267337b1deb2f4218efa3531b5dc84a2 | ||
DIST nagios-plugin-check_smart-6.15.0.tar.gz 25112 BLAKE2B 4c3d025dd13d6f6ffc95b14efb0ac0ec6118eea76d4898792925855be2350a753394232bf879ebfa8fe0e8a233e11aa3e2d6ebc5bb4221e0f6fce46ff64ab2c4 SHA512 e215fb665cac38cbbb4e103e5e7f08ab261cd36b7bf22cf701939af511c04987a45c6b86771f435efde4a285b34be0edd55b9bcd02fdcb04f5f09383d0c96c73 | ||
EBUILD nagios-plugin-check_smart-6.14.3.ebuild 621 BLAKE2B 32ce15cf1a7c0c9cf2ab82a72a660cc9036dff94ddd50a5096015d3fa238514ea407a0556fdfa2a920957c1520ba6c31167fe0b4e2efe66873009238bf6b0350 SHA512 6acb5986900d9e77b1d8418f1a4776f65cf697d7f58cb5f23be4a44d635eb1f8f3bdd3220f66eef60a86a577a401df921a3800643d5eb74c69ffab802b018090 | ||
EBUILD nagios-plugin-check_smart-6.15.0.ebuild 621 BLAKE2B d42aef0ff42308397f722253b7429135648ff8c6d20b0af23b5fb9a80e7f119fc824d5e1996c32b118ae578dfc0a7d224f0702d9086e7c5ffb7ae820a4d1e76c SHA512 0d21b7e4a7acfa10bc80243012bd005a0d847934f019b663ddaf9104966b63f1e29d30b49b1acc719f104c919afc0fb54fe25fe5d024d15932ab4757c74dd5d2 | ||
MISC metadata.xml 289 BLAKE2B 21f58f1c705d2c86bed7c82cc01788f4e3725733ee1613a195634483822487c585545fb269089ce2e30588ece03dc26cff9fbbd2a875268dc12516c3d71720f7 SHA512 a14a3f766e1f0bd5ffdad7d0ae637a874d9b944ab0f580db0b86293d76244c2f8dc751dbe45ec87ad9451efb7be83cfeaa0e5573925e43431b7ab3940b31717e |
27 changes: 27 additions & 0 deletions
27
net-analyzer/nagios-plugin-check_smart/nagios-plugin-check_smart-6.15.0.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,27 @@ | ||
# Copyright 1999-2025 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit perl-module vcs-snapshot | ||
|
||
MY_PN="${PN/nagios-plugin-/}" | ||
|
||
DESCRIPTION="Nagios plugin to monitor SMART health values for disks" | ||
HOMEPAGE="https://github.com/Napsty/check_smart" | ||
SRC_URI="https://github.com/Napsty/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
RDEPEND=" | ||
virtual/perl-Getopt-Long | ||
sys-apps/smartmontools | ||
" | ||
|
||
src_install() { | ||
local plugindir="/usr/$(get_libdir)/nagios/plugins" | ||
exeinto "${plugindir}" | ||
newexe check_smart.pl check_smart | ||
} |