mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
ee91cf83e5
- Finally bump the port to the current version after remaining at 2.7 for a while due to garbage characters being returned by nrpe2. Issue was caused by the reading command buffer not being \0 terminated. This has been resolved in CVS but has been back-ported for now. PR: ports/120874 Submitted by: Jarrod Sayers <jarrod@netleader.com.au> (maintainer)
15 lines
760 B
INI
15 lines
760 B
INI
--- sample-config/nrpe.cfg.in.orig 2007-11-24 04:01:23.000000000 +1030
|
|
+++ sample-config/nrpe.cfg.in 2008-02-20 18:39:58.000000000 +1030
|
|
@@ -198,7 +198,10 @@
|
|
|
|
command[check_users]=@libexecdir@/check_users -w 5 -c 10
|
|
command[check_load]=@libexecdir@/check_load -w 15,10,5 -c 30,25,20
|
|
-command[check_hda1]=@libexecdir@/check_disk -w 20% -c 10% -p /dev/hda1
|
|
+command[check_root]=@libexecdir@/check_disk -w 20% -c 10% -p /
|
|
+command[check_var]=@libexecdir@/check_disk -w 20% -c 10% -p /var
|
|
+command[check_tmp]=@libexecdir@/check_disk -w 20% -c 10% -p /tmp
|
|
+command[check_usr]=@libexecdir@/check_disk -w 20% -c 10% -p /usr
|
|
command[check_zombie_procs]=@libexecdir@/check_procs -w 5 -c 10 -s Z
|
|
command[check_total_procs]=@libexecdir@/check_procs -w 150 -c 200
|
|
|