From 1295d8723f7155dae21fb071f24766f3df5157cf Mon Sep 17 00:00:00 2001 From: Craig Gallek Date: Thu, 22 Jan 2015 10:10:55 -0500 Subject: [PATCH] muninlite: uptime should report days, not seconds. upstream bug: https://sourceforge.net/p/muninlite/patches/8/ Closes #810 Signed-off-by: Craig Gallek Signed-off-by: Jonathan McCrohan --- admin/muninlite/patches/110-fix-uptime-days.patch | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 admin/muninlite/patches/110-fix-uptime-days.patch diff --git a/admin/muninlite/patches/110-fix-uptime-days.patch b/admin/muninlite/patches/110-fix-uptime-days.patch new file mode 100644 index 000000000..17ef208ae --- /dev/null +++ b/admin/muninlite/patches/110-fix-uptime-days.patch @@ -0,0 +1,9 @@ +--- a/plugins/uptime ++++ b/plugins/uptime +@@ -7,5 +7,5 @@ + echo "uptime.cdef uptime,86400,/" + } + fetch_uptime() { +- echo "uptime.value" $(cut -d\ -f1 /proc/uptime) ++ awk '{printf "uptime.value %.2f",$1/86400; print ""}' /proc/uptime + }