Codebase list xymon / c201f47
New upstream bugfix release 4.3.30, update patches Drop 63_netstat-ant-vs-ipv6-address-truncating.patch, fixed upstream. Axel Beckert 4 years ago
4 changed file(s) with 9 addition(s) and 34 deletion(s). Raw diff Collapse all Expand all
0 xymon (4.3.29-2) UNRELEASED; urgency=medium
0 xymon (4.3.30-1) UNRELEASED; urgency=medium
11
22 * Retroactively add bug report number to previous changelog entry.
3
4 -- Axel Beckert <abe@debian.org> Fri, 23 Aug 2019 01:05:09 +0200
3 * Import new upstream bugfix release 4.3.30.
4 + Drop 63_netstat-ant-vs-ipv6-address-truncating.patch, fixed
5 upstream.
6
7 -- Axel Beckert <abe@debian.org> Sun, 08 Sep 2019 18:44:23 +0200
58
69 xymon (4.3.29-1) unstable; urgency=high
710
22 Last-Update: 2015-09-10
33 Forwarded: not-needed
44
5 Index: xymon/client/xymonclient-linux.sh
6 ===================================================================
7 --- xymon.orig/client/xymonclient-linux.sh 2013-05-20 16:21:55.890506445 +0200
8 +++ xymon/client/xymonclient-linux.sh 2013-05-20 16:21:55.878506050 +0200
9 @@ -75,6 +75,8 @@
5 --- a/client/xymonclient-linux.sh
6 +++ b/client/xymonclient-linux.sh
7 @@ -78,6 +78,8 @@
108 if test -r /proc/mdstat; then echo "[mdstat]"; cat /proc/mdstat; fi
119 echo "[ps]"
1210 ps -Aww f -o pid,ppid,user,start,state,pri,pcpu,time:12,pmem,rsz:10,vsz:10,cmd
+0
-25
debian/patches/63_netstat-ant-vs-ipv6-address-truncating.patch less more
0 Description: Let port monitoring (netstat -ant) no more cut IPv6 addresses
1 /usr/lib/hobbit/client/bin/hobbitclient-linux.sh calls netstat -ant to
2 get a list of all ports of the server.
3 The default behavior of netstat -ant is to use fixed column width for
4 addresses, which means that long IPv6 addresses are cut.
5 Author: Roland Rosenfeld <roland@spinnaker.de>
6 Bug-Debian: https://bugs.debian.org/734867
7 Reviewed-By: Axel Beckert <abe@debian.org>
8 Forwarded: http://lists.xymon.com/pipermail/xymon/2015-September/042224.html
9 http://lists.xymon.com/pipermail/xymon/2017-January/044217.html
10 Last-Update: 2015-09-10
11
12 Index: xymon/client/xymonclient-linux.sh
13 ===================================================================
14 --- xymon.orig/client/xymonclient-linux.sh 2015-02-04 00:18:44.607857512 +0100
15 +++ xymon/client/xymonclient-linux.sh 2015-02-04 00:18:44.603857447 +0100
16 @@ -73,7 +73,7 @@
17 netstat -s
18 echo "[ports]"
19 # Bug in RedHat's netstat spews annoying error messages.
20 -netstat -antu 2>/dev/null
21 +netstat -antuW 2>/dev/null
22 echo "[ifstat]"
23 /sbin/ifconfig 2>/dev/null
24 # Report mdstat data if it exists
1111 45_fix-configure-for-multiarch.patch
1212 48_png-multiarch.patch
1313 51_hardening-buildflags.patch
14 63_netstat-ant-vs-ipv6-address-truncating.patch
1514 69_disk-no-duplicate-root.patch
1615 87_fix_logfetch_FTBFS_with_glibc_2.26.patch