From d28ba289468b13f205830dfffc1ac06bf49f8ecd Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Thu, 26 Sep 2013 00:55:59 +0000 Subject: Fix syntax error for process config --- minimunin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minimunin b/minimunin index 3a96ae0..9319f6b 100755 --- a/minimunin +++ b/minimunin @@ -307,8 +307,8 @@ graph_title Process Statistics processes.label The number of processes in the system threads.label The number of threads in the system maxprocesses.label The maximum number of processes in the system - processes.warning $(( get_sys kern.maxproc * 92 / 100 )) - processes.critical $(( get_sys kern.maxproc * 98 / 100 )) + processes.warning $(( `get_sys kern.maxproc` * 92 / 100 )) + processes.critical $(( `get_sys kern.maxproc` * 98 / 100 )) EOF ;; *) -- cgit v1.2.3