From: Craig Gallek Date: Thu, 22 Jan 2015 15:10:55 +0000 (-0500) Subject: muninlite: uptime should report days, not seconds. X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=1295d8723f7155dae21fb071f24766f3df5157cf;p=openwrt-packages.git 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 --- 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 + }