diff options
| author | Ethan Galstad <egalstad@users.sourceforge.net> | 2002-02-28 06:42:51 +0000 |
|---|---|---|
| committer | Ethan Galstad <egalstad@users.sourceforge.net> | 2002-02-28 06:42:51 +0000 |
| commit | 44a321cb8a42d6c0ea2d96a1086a17f2134c89cc (patch) | |
| tree | a1a4d9f7b92412a17ab08f34f04eec45433048b7 /plugins-scripts/utils.sh.in | |
| parent | 54fd5d7022ff2d6a59bc52b8869182f3fc77a058 (diff) | |
| download | monitoring-plugins-44a321cb8a42d6c0ea2d96a1086a17f2134c89cc.tar.gz | |
Initial revision
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-scripts/utils.sh.in')
| -rw-r--r-- | plugins-scripts/utils.sh.in | 22 |
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 00000000..1e835e67 --- /dev/null +++ b/plugins-scripts/utils.sh.in | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | |||
| 3 | STATE_DEPENDENT=-2 | ||
| 4 | STATE_UNKNOWN=-1 | ||
| 5 | STATE_OK=0 | ||
| 6 | STATE_WARNING=1 | ||
| 7 | STATE_CRITICAL=2 | ||
| 8 | |||
| 9 | if test -x /usr/bin/printf; then | ||
| 10 | ECHO=/usr/bin/printf | ||
| 11 | else | ||
| 12 | ECHO=echo | ||
| 13 | fi | ||
| 14 | |||
| 15 | print_revision() { | ||
| 16 | echo "$1 (@PACKAGE@ @VERSION@) $2" | ||
| 17 | $ECHO "@WARRANTY@" | /bin/sed -e 's/\n/ /g' | ||
| 18 | } | ||
| 19 | |||
| 20 | support() { | ||
| 21 | $ECHO "@SUPPORT@" | /bin/sed -e 's/\n/ /g' | ||
| 22 | } \ No newline at end of file | ||
