[Mon-commit] mon CHANGES,1.3,1.3.2.1 mon,1.22,1.22.2.1
Brought to you by:
trockij
|
From: Jim T. <tr...@us...> - 2007-05-03 19:42:08
|
Update of /cvsroot/mon/mon
In directory sc8-pr-cvs16:/tmp/cvs-serv1843
Modified Files:
Tag: mon-1-2-branch
CHANGES mon
Log Message:
added unack_summary fix from augie, also added documentation for this in the man page
Index: CHANGES
===================================================================
RCS file: /cvsroot/mon/mon/CHANGES,v
retrieving revision 1.3
retrieving revision 1.3.2.1
diff -C2 -d -r1.3 -r1.3.2.1
*** CHANGES 15 Nov 2004 14:45:16 -0000 1.3
--- CHANGES 3 May 2007 19:41:23 -0000 1.3.2.1
***************
*** 1,4 ****
--- 1,17 ----
$Id$
+ Changes between mon-1.2.0- and mon-1.2.0-release
+ Thu May 3 15:38:58 EDT 2007
+ -----------------------------------------------
+
+ -Added RPM spec update to do a "chkconfig on" in the post install,
+ and fixed a path bug in S99mon
+ by Augie Schwer
+
+ -Fix config parsing of unack_summary, added docs for the option in the
+ man page
+ by Augie Schwer
+
+
Changes between mon-1.0.0pre3 and mon-1.0.0pre4
Tue Aug 3 08:02:35 EDT 2004
Index: mon
===================================================================
RCS file: /cvsroot/mon/mon/mon,v
retrieving revision 1.22
retrieving revision 1.22.2.1
diff -C2 -d -r1.22 -r1.22.2.1
*** mon 13 Jul 2006 12:03:39 -0000 1.22
--- mon 3 May 2007 19:41:24 -0000 1.22.2.1
***************
*** 1133,1141 ****
if (defined $2) {
if ($2 =~ /y(es)?/i) {
! $2 = 1;
} elsif ($2 =~ /n(o)?/i) {
! $2 = 0;
! }
! if ($2 eq "0" || $2 eq "1") {
$UNACK_SUMMARY = $2;
} else {
--- 1133,1140 ----
if (defined $2) {
if ($2 =~ /y(es)?/i) {
! $UNACK_SUMMARY = 1;
} elsif ($2 =~ /n(o)?/i) {
! $UNACK_SUMMARY = 0;
! } elsif ($2 eq "0" || $2 eq "1") {
$UNACK_SUMMARY = $2;
} else {
|