]> arthur.barton.de Git - nagcollect.git/blob - client/lib/tests/Uptime.tst
Uptime.tst: update copyright notice and reformat code ...
[nagcollect.git] / client / lib / tests / Uptime.tst
1 # NagCollect -- Nagios Data Collector for Passive Checks
2 # Copyright (c)2009-2010 Alexander Barton, alex@barton.de
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 # Please read the file COPYING, README and AUTHORS for more information.
9 #
10
11 SERVICE="Uptime_p"
12
13 uptime=`LC_ALL=C uptime`
14 uptime=${uptime%,*user*}
15 uptime=${uptime##* up }
16
17 os="`uname -s` `uname -r`"
18 [ `uname` = "Darwin" ] \
19         && os="`sw_vers -productName` `sw_vers -productVersion`"
20
21 STATUS=0
22 TEXT="Uptime: $uptime - $os"