summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrás Wacha2019-05-30 09:51:06 +0200
committerAndrás Wacha2019-05-30 09:51:06 +0200
commitf90d950d99cfedcd2683dcb38448bdaf03f15ff7 (patch)
tree3d2fe92d1d3444bbcd7a42d4e2b05866ffc08aab
downloadaur-f90d950d99cfedcd2683dcb38448bdaf03f15ff7.tar.gz
Initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD17
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..761b0c5c3710
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = monitoring-plugins-qnap
+ pkgdesc = This plugin sends SNMP queries to a QNAP NAS and checks the cpu, HDD status, system temperature, HDD temperature
+ pkgver = 1.40
+ pkgrel = 1
+ url = https://exchange.nagios.org/directory/Plugins/Hardware/Storage-Systems/Others/check_qnap
+ arch = x86_64
+ license = GPL
+ source = check_qnap.sh::https://exchange.nagios.org/components/com_mtree/attachment.php?link_id=5931&cf_id=29
+ md5sums = b0762dc0ac03cbe43c75e3a367115aa7
+
+pkgname = monitoring-plugins-qnap
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..e8fde249c97f
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: András Wacha <awacha@gmail.com>
+pkgname=monitoring-plugins-qnap
+pkgver=1.40
+pkgrel=1
+pkgdesc="This plugin sends SNMP queries to a QNAP NAS and checks the cpu, HDD status, system temperature, HDD temperature"
+arch=( x86_64 )
+url="https://exchange.nagios.org/directory/Plugins/Hardware/Storage-Systems/Others/check_qnap"
+license=('GPL')
+depends=()
+source=("check_qnap.sh::https://exchange.nagios.org/components/com_mtree/attachment.php?link_id=5931&cf_id=29")
+md5sums=('b0762dc0ac03cbe43c75e3a367115aa7')
+
+package() {
+ mkdir -p $pkgdir/usr/lib/monitoring-plugins/
+ cp check_qnap.sh $pkgdir/usr/lib/monitoring-plugins/check_qnap
+ chmod +x $pkgdir/usr/lib/monitoring-plugins/check_qnap
+}