Hide Forgot
+++ This bug was initially created as a clone of Bug #1295886 +++ Description of problem: When called with --service sshd --detail 8, logwatch does not print out the summary of successful Kerberos authentications. This summary is printed with detail level 9, 10, but also 7. Thus the detail level of 8 may be less verbose than 7, which is clearly undesired. The root cause of this behaviour seems to be in using the 'greater than' operator where a 'greater than or equal' should be (in /usr/share/logwatch/scripts/services/sshd): --- sshd.orig 2016-01-05 12:09:26.153006890 -0500 +++ sshd 2016-01-05 12:12:09.610000477 -0500 @@ -576,7 +576,7 @@ } } -if ( ($Detail == 7 && keys %KrbRealm > 1) || ($Detail > 8 && keys %KrbRealm) ){ +if ( ($Detail == 7 && keys %KrbRealm > 1) || ($Detail >= 8 && keys %KrbRealm) ){ print "\nSucessfull Kerberos Authentication from ",(scalar keys %KrbRealm)," realm:\n"; foreach my $realm (keys %KrbRealm) { if($Detail > 9){ Version-Release number of selected component (if applicable): logwatch-7.4.0-28.20130522svn140.el7.noarch
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://rhn.redhat.com/errata/RHBA-2016-2312.html