Accepting request 1357178 from server:monitoring

OBS-URL: https://build.opensuse.org/request/show/1357178
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/logwatch?expand=0&rev=57
This commit is contained in:
2026-06-05 13:01:12 +00:00
committed by Git OBS Bridge
6 changed files with 66 additions and 32 deletions
+34
View File
@@ -1,3 +1,37 @@
-------------------------------------------------------------------
Tue Jun 2 12:18:14 UTC 2026 - Petr Gajdos <pgajdos@suse.com>
- Update to 7.14
* Merge /u/opoplawski/logwatch/ branch archives into master
* Add missing flag for Output_Generated
* Merge /u/fcrawford/logwatch/ branch frank-zz-disk-space into master
* Sort human order
* [postfix] Support for Postfix version 3.11, by Michael Grimm
* [dnf5] Exit gracefully if dnf not installed.
* [clam-update] Clarified use of files in syslog format.
* Merge /u/fcrawford/logwatch/ branch frank-misc into master
* Match some updated output
* Fix output of blank sendmail section when not running
* Update termination message
* [dovecot] Added support for Submission statements, by Bob Hockney
* Suppress excess new line when no output generated
* Exclude virtual FS nsfs
* Remove tabs and clean up formatting
* Handle dnf5 returning times as UTC
* Add new script to process dnf5 reports
* [dovecot] Fixed typos, by Vladimir Lomov
* [dovecot] Support for dovecot version 2.4, by Vladimir Lomov.
* [clam-update] Created specific $clam_update_detail variable, and added debug statements showing how it is set.
* [dovecot] Fixed spacing, by Vladimir Lomov
* [chronyd] Initial submission of chronyd, by Miroslav Lichvar.
* [sshd] Corrected port number in debug statement. Reported by Andrew Myers.
* [clam-update] Corrected instructions for using RemoveHeaders, per Nicolas Croiset
* Update documentation to reflect that --archives is the default and allow disabling with --noarchives
- modified sources
* ChangeLog
- deleted patches
* 0001-Exclude-virtual-FS-nsfs.patch (upstreamed)
-------------------------------------------------------------------
Thu Jan 8 08:58:51 UTC 2026 - Cathy Hu <cathy.hu@suse.com>
+1 -4
View File
@@ -17,7 +17,7 @@
Name: logwatch
Version: 7.13
Version: 7.14
Release: 0
Summary: Tool to analyze and report on system logs
License: MIT
@@ -31,8 +31,6 @@ Patch0: logwatch-firewall.patch
Patch2: logwatch-timestamp_in_var.patch
Patch3: harden_logwatch.service.patch
Patch4: harden_logwatch_dmeventd.service.patch
# PATCH-FIX-UPSTREAM 0001-Exclude-virtual-FS-nsfs.patch bsc#1255862
Patch5: 0001-Exclude-virtual-FS-nsfs.patch
BuildRequires: xz
Requires: grep
Requires: mailx
@@ -69,7 +67,6 @@ cp %{SOURCE3} .
sed -i -e 's,%{_datadir}/doc/logwatch-\*,%{_defaultdocdir}/logwatch,' logwatch.8
%patch -P 3 -p1
%patch -P 4 -p1
%patch -P 5 -p1
%build
-25
View File
@@ -1,25 +0,0 @@
From 6cbaacbe80aa4f86340dc55271f7f3e08bb76750 Mon Sep 17 00:00:00 2001
From: Frank Crawford <frank@crawford.emu.id.au>
Date: Tue, 28 Oct 2025 20:18:56 +1100
Subject: [PATCH] Exclude virtual FS nsfs
---
scripts/services/zz-disk_space | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/services/zz-disk_space b/scripts/services/zz-disk_space
index d7f2c9a..67c6f02 100644
--- a/scripts/services/zz-disk_space
+++ b/scripts/services/zz-disk_space
@@ -163,7 +163,7 @@ sub DiskFull {
#Main
if ($OSname eq "Linux") {
- $df_options = "-h -x tmpfs -x devtmpfs -x udf -x iso9660 -x squashfs -x overlay";
+ $df_options = "-h -x tmpfs -x devtmpfs -x udf -x iso9660 -x squashfs -x overlay -x nsfs";
if ($local_disks_only) { $df_options .= " -l"; }
} elsif ($OSname eq "Darwin") {
$df_options = "-h -T nodevfs,autofs";
--
2.52.0
+28
View File
@@ -2,6 +2,34 @@
control logs (e.g. 'git log --oneline v1..v2'), as the Logwatch project does
not release a change log themselves. ***
==== 7.14 ====
93cb38b (tag: 7.14) Preparation for release 7.14
787379b Merge /u/opoplawski/logwatch/ branch archives into master
17460ed Add missing flag for Output_Generated
b7dde79 Merge /u/fcrawford/logwatch/ branch frank-zz-disk-space into master
c98f920 Sort human order
606b93e [postfix] Support for Postfix version 3.11, by Michael Grimm
a2fef13 [dnf5] Exit gracefully if dnf not installed.
13e5ec2 [clam-update] Clarified use of files in syslog format.
dafde2c Merge /u/fcrawford/logwatch/ branch frank-misc into master
ae4c66e Match some updated output
95c52b1 Fix output of blank sendmail section when not running
aa38af9 Update termination message
fd1cb9c [dovecot] Added support for Submission statements, by Bob Hockney
bb9c4d2 Suppress excess new line when no output generated
6cbaacb Exclude virtual FS nsfs
eb2e9c2 Remove tabs and clean up formatting
26ff20a Handle dnf5 returning times as UTC
c59374f Add new script to process dnf5 reports
729132b [dovecot] Fixed typos, by Vladimir Lomov
5e6fa3d [dovecot] Support for dovecot version 2.4, by Vladimir Lomov.
d6bea66 [clam-update] Created specific $clam_update_detail variable, and added debug statements showing how it is set.
d59e5e4 [dovecot] Fixed spacing, by Vladimir Lomov
54e800c [chronyd] Initial submission of chronyd, by Miroslav Lichvar.
7d5a0ba [sshd] Corrected port number in debug statement. Reported by Andrew Myers.
eb5893b [clam-update] Corrected instructions for using RemoveHeaders, per Nicolas Croiset
c478db8 Update documentation to reflect that --archives is the default and allow disabling with --noarchives
==== 7.13 ====
88df91d (HEAD -> master, tag: 7.13, origin/master, origin/HEAD) [logwatch] Preparation for Release 7.13
0ac11a5 [rsyslogd] De-duplicate lines with time calculations
-3
View File
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0c9a10c2d8e5bc0cb10e16dc86c83be60d71d8a52b97bca785c64a30ed642839
size 514042
+3
View File
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2fc66eca83419053991484b7d6e778f46b03704ce778893473d7a9cb7dd915f9
size 518727