]> arthur.barton.de Git - nagcollect.git/blobdiff - client/bin/nagcollecttest
nagcollecttest: Accept full path names to test script
[nagcollect.git] / client / bin / nagcollecttest
index 94df17a5c95e7cf273d2d5715bba3c19eef1fa5e..84d66bf0c90ebb0b6766d4dd1f07d47b9f4c1a16 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/bash
 #
 # NagCollect -- Nagios Data Collector for Passive Checks
-# Copyright (c)2009-2011 Alexander Barton, alex@barton.de
+# Copyright (c)2009-2012 Alexander Barton, alex@barton.de
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -27,7 +27,9 @@ if [ `id -u` -ne 0 ]; then
        exit 3
 fi
 
-if [ -r /usr/local/lib/nagcollect/"$1.tst" ]; then
+if [ -r "$1" ]; then
+       tst="$1"
+elif [ -r /usr/local/lib/nagcollect/"$1.tst" ]; then
        tst=/usr/local/lib/nagcollect/"$1.tst"
 elif [ -r /usr/local/lib/nagcollect/`uname`/"$1.tst" ]; then
        tst=/usr/local/lib/nagcollect/`uname`/"$1.tst"