From d16f095d47a0c1b108c65822be558a7c59e01768 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Wed, 1 Sep 2010 17:52:21 +0200 Subject: [PATCH] Uptime.tst: test for uptime >1 day on Mac OS X Server <1 day results in error, <2 days results in warning. --- client/lib/tests/Uptime.tst | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/client/lib/tests/Uptime.tst b/client/lib/tests/Uptime.tst index ba40d5b..9b05861 100644 --- a/client/lib/tests/Uptime.tst +++ b/client/lib/tests/Uptime.tst @@ -9,14 +9,34 @@ # SERVICE="Uptime_p" +STATUS=0 uptime=`LC_ALL=C uptime` uptime=${uptime%,*user*} uptime=${uptime##* up } os="`uname -s` `uname -r`" -[ `uname` = "Darwin" ] \ - && os="`sw_vers -productName` `sw_vers -productVersion`" -STATUS=0 +if [ `uname` = "Darwin" ]; then + os="`sw_vers -productName` `sw_vers -productVersion`" + case "$os" in + *Server*) + case "$uptime" in + *" days, "*) + STATUS=0 + ;; + "1 day, "*) + STATUS=1 + ;; + *:*) + STATUS=2 + ;; + *) + STATUS=3 + ;; + esac + ;; + esac +fi + TEXT="Uptime: $uptime - $os" -- 2.39.2