[Mon-commit] mon CHANGES,1.1.1.1,1.2 mon,1.1.1.1,1.2
Brought to you by:
trockij
From: Jim T. <tr...@us...> - 2004-06-11 14:56:05
|
Update of /cvsroot/mon/mon In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14305 Modified Files: CHANGES mon Log Message: removed nonsensical unless statement which would conditionally set the op status to STAT_OK. it should be set unconditionally Index: CHANGES =================================================================== RCS file: /cvsroot/mon/mon/CHANGES,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** CHANGES 9 Jun 2004 05:18:04 -0000 1.1.1.1 --- CHANGES 11 Jun 2004 14:55:55 -0000 1.2 *************** *** 2,6 **** Changes between mon-0.99.2 and mon-0.99.3 ! Mon Jun 7 13:52:56 EDT 2004 -------------------------------------------- --- 2,6 ---- Changes between mon-0.99.2 and mon-0.99.3 ! Fri Jun 11 10:55:27 EDT 2004 -------------------------------------------- *************** *** 172,175 **** --- 172,177 ---- the "all" directive in auth.cf + -removed nonsensical unless statement which would conditionally set the op + status to STAT_OK. it should be set unconditionally Index: mon =================================================================== RCS file: /cvsroot/mon/mon/mon,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** mon 9 Jun 2004 05:18:03 -0000 1.1.1.1 --- mon 11 Jun 2004 14:55:55 -0000 1.2 *************** *** 2960,2967 **** $sref->{"_last_success"} = $tmnow; ! unless (defined($sref->{"_upalert"}) && ( $diff < $sref->{"_upalertafterinterval"}) ) ! { ! set_op_status ($group, $service, $STAT_OK); ! } } --- 2960,2964 ---- $sref->{"_last_success"} = $tmnow; ! set_op_status ($group, $service, $STAT_OK); } |