summaryrefslogtreecommitdiffstats
path: root/plugins-scripts/utils.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'plugins-scripts/utils.sh.in')
-rw-r--r--plugins-scripts/utils.sh.in22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins-scripts/utils.sh.in b/plugins-scripts/utils.sh.in
new file mode 100644
index 0000000..1e835e6
--- /dev/null
+++ b/plugins-scripts/utils.sh.in
@@ -0,0 +1,22 @@
1#! /bin/sh
2
3STATE_DEPENDENT=-2
4STATE_UNKNOWN=-1
5STATE_OK=0
6STATE_WARNING=1
7STATE_CRITICAL=2
8
9if test -x /usr/bin/printf; then
10 ECHO=/usr/bin/printf
11else
12 ECHO=echo
13fi
14
15print_revision() {
16 echo "$1 (@PACKAGE@ @VERSION@) $2"
17 $ECHO "@WARRANTY@" | /bin/sed -e 's/\n/ /g'
18}
19
20support() {
21 $ECHO "@SUPPORT@" | /bin/sed -e 's/\n/ /g'
22} \ No newline at end of file