Your message dated Wed, 27 Nov 2024 20:43:22 +0000
with message-id <[email protected]>
and subject line Bug#1087958: fixed in needrestart 3.7-3.2
has caused the Debian Bug report #1087958,
regarding needrestart: Always restarts all LXC containers
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1087958: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1087958
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: needrestart
Version: 3.7-3.1
Severity: important
SInce the update to 3.7-3.1, needrestart always triggers a restart of
all running LXC containers. Not a restart of lxc.service itself, but a
restart of each and every container using "lxc-stop --reboot --name foo".
Reverting back to 3.7-3, such restarts are only triggered when they are
required.
-- System Information:
Debian Release: trixie/sid
APT prefers unstable-debug
APT policy: (500, 'unstable-debug'), (500, 'testing-debug'), (500,
'stable-debug'), (500, 'oldstable-debug'), (500, 'unstable'), (500, 'testing'),
(500, 'stable'), (500, 'oldstable'), (1, 'experimental-debug'), (1,
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 6.11.5-amd64 (SMP w/8 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
Versions of packages needrestart depends on:
ii dpkg 1.22.11
ii gettext-base 0.22.5-2
ii libintl-perl 1.33-1
ii libmodule-find-perl 0.16-2
ii libproc-processtable-perl 0.636-1+b3
ii libsort-naturally-perl 1.03-4
ii libterm-readkey-perl 2.38-2+b4
ii perl 5.40.0-7
ii xz-utils 5.6.3-1+b1
Versions of packages needrestart recommends:
ii libpam-systemd 257~rc2-3
ii systemd 257~rc2-3
Versions of packages needrestart suggests:
pn iucode-tool <none>
ii libnotify-bin 0.8.3-1+b2
-- Configuration Files:
/etc/needrestart/needrestart.conf changed:
$nrconf{restart} = 'a';
$nrconf{blacklist} = [
# ignore sudo (not a daemon)
qr(^/usr/bin/sudo(\.dpkg-new)?$),
# ignore apt-get (Debian Bug#784237)
qr(^/usr/bin/apt-get(\.dpkg-new)?$),
];
$nrconf{override_rc} = {
# DBus
qr(^dbus) => 0,
# display managers
qr(^gdm) => 0,
qr(^greetd) => 0,
qr(^kdm) => 0,
qr(^nodm) => 0,
qr(^sddm) => 0,
qr(^wdm) => 0,
qr(^xdm) => 0,
qr(^lightdm) => 0,
qr(^slim) => 0,
qr(^lxdm) => 0,
# networking stuff
qr(^bird) => 0,
qr(^network) => 0,
qr(^NetworkManager) => 0,
qr(^ModemManager) => 0,
qr(^wpa_supplicant) => 0,
qr(^ifup) => 0,
qr(^openvpn) => 0,
qr(^quagga) => 0,
qr(^frr) => 0,
qr(^tinc) => 0,
qr(^(open|free|libre|strong)swan) => 0,
qr(^bluetooth) => 0,
# gettys
qr(^getty@.+\.service) => 0,
qr(^serial-getty@.+\.service) => 0,
# systemd --user
qr(^user@\d+\.service) => 0,
# misc
qr(^usbguard\.service$) => 0,
qr(^zfs-fuse) => 0,
qr(^mythtv-backend) => 0,
qr(^xendomains) => 0,
qr(^lxcfs) => 0,
qr(^libvirt) => 0,
qr(^virtlogd) => 0,
qr(^virtlockd) => 0,
qr(^docker) => 0,
# systemd stuff
# (see also Debian Bug#784238 & #784437)
qr(^emergency\.service$) => 0,
qr(^rescue\.service$) => 0,
qr(^elogind) => 0,
# do not restart oneshot services, see also #862840
qr(^apt-daily\.service$) => 0,
qr(^apt-daily-upgrade\.service$) => 0,
qr(^unattended-upgrades\.service$) => 0,
# do not restart oneshot services from systemd-cron, see also #917073
qr(^cron-.*\.service$) => 0,
# ignore rc-local.service, see #852864
qr(^rc-local\.service$) => 0,
# don't restart systemd-logind, see #798097
qr(^systemd-logind) => 0,
};
$nrconf{override_cont} = {
};
$nrconf{blacklist_interp} = [
# ignore temporary files
qr(^/tmp/),
qr(^/var/),
qr(^/run/),
];
$nrconf{blacklist_mappings} = [
# special device paths
qr(^/(SYSV00000000( \(deleted\))?|drm(\s|$)|dev/)),
# ignore memfd mappings
qr(^/memfd:),
# aio(7) mapping
qr(^/\[aio\]),
# Oil Runtime Compiler's JIT files
qr#/orcexec\.[\w\d]+( \(deleted\))?$#,
# plasmashell (issue #65)
qr(/#\d+( \(deleted\))?$),
# Java Native Access (issues #142 #185)
qr#/jna\d+\.tmp( \(deleted\))?$#,
# temporary stuff
qr#^(/var)?/tmp/#,
qr#^(/var)?/run/#,
];
$nrconf{skip_mapfiles} = -1;
$nrconf{kernelhints} = -1;
if(-d q(/etc/needrestart/conf.d)) {
foreach my $fn (sort </etc/needrestart/conf.d/*.conf>) {
print STDERR "$LOGPREF eval $fn\n" if($nrconf{verbosity} > 1);
eval do { local(@ARGV, $/) = $fn; <>};
die "Error parsing $fn: $@" if($@);
}
}
-- no debconf information
--- End Message ---
--- Begin Message ---
Source: needrestart
Source-Version: 3.7-3.2
Done: Salvatore Bonaccorso <[email protected]>
We believe that the bug you reported is fixed in the latest version of
needrestart, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Salvatore Bonaccorso <[email protected]> (supplier of updated needrestart
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Wed, 27 Nov 2024 20:45:40 +0100
Source: needrestart
Architecture: source
Version: 3.7-3.2
Distribution: unstable
Urgency: medium
Maintainer: Patrick Matthäi <[email protected]>
Changed-By: Salvatore Bonaccorso <[email protected]>
Closes: 1087917 1087918 1087957 1087958 1088012 1088047
Changes:
needrestart (3.7-3.2) unstable; urgency=medium
.
* Non-maintainer upload.
* core: fix regression of false positives for processes running in chroot or
mountns (Closes: #1087918, #1088047, #1088012, #1087917, #1087958,
#1087957)
Checksums-Sha1:
6ca587299a3b2f5c6e3bc0f0fc5943e18666132c 1983 needrestart_3.7-3.2.dsc
9e6e538dd43ea9f6d76c8e7863269f0f04a1bbad 15500
needrestart_3.7-3.2.debian.tar.xz
Checksums-Sha256:
7366de19c64930e0057d17833346fc5cb46d64366b185bc11761909088dd1671 1983
needrestart_3.7-3.2.dsc
4ccc4278be120d29f96f9c2e48825b919bacf10a119170a19e0258c7f172f254 15500
needrestart_3.7-3.2.debian.tar.xz
Files:
f6627a68922d36b180597e51f980735f 1983 admin optional needrestart_3.7-3.2.dsc
68be43a94bc0406a2d099a7d1ea5827b 15500 admin optional
needrestart_3.7-3.2.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
iQKmBAEBCgCQFiEERkRAmAjBceBVMd3uBUy48xNDz0QFAmdHd5pfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDQ2
NDQ0MDk4MDhDMTcxRTA1NTMxRERFRTA1NENCOEYzMTM0M0NGNDQSHGNhcm5pbEBk
ZWJpYW4ub3JnAAoJEAVMuPMTQ89E1XQQAJDQVe1E6A0OXA/JwfBIfWRo+hKn/p9X
19UWnV/22xA06PM8p66LlgzPl/ULEmVLFpB8pN8mMoypcONiE4kFlBsFaXsNDGzE
AMnbu2xIHi1idOmwrarwvLMuGYOh/TdawwMn6RUHyhZ7UWl2rYy4oDm+LSzeDd8u
Qg0y0Cfe8RIQPvPbA9OMFjkcb4HSNcu14cR0+7RzIcrArhxOsg8vWNgi1aIN9JL+
B4gF3uPSUplxWy68FYfOh0/th4m8MGZbyUfwapFy4NslUR4WuoHoU0FDDtYvlcqw
SWUSpN082VZMGKjDd4J3Pv/xRVfnqbKxdZh+FBzi6k8ntKS9gMylCfKQUJIU9Z6c
27eeNFbksCTDz+NpyO7TIzq5xNUsTzWfdnRJOv6KgeqLCVCRBYGUCg5wvS5LKdoe
+mKUF0q2Q6/1JvXUygVnXvrDWoYvDwG+XrZwI/oFn4WYlLYA4/ROxyRW45YYPUOQ
Dzw8oCLopZRTSId1Xd5fE9UdS4x4V50us+6ajzfGX6y1G+NbQceNlTZJzD8zyfXN
DLiCJUaqGBnPfXdtd5fcerEyuXBjsPk1nkpZMMj8GwSdp6pykfqSQ6s3I2utUWtx
TI4yYxtu1N64cpl0SxSdCK/AsofZRXEaz0eOP6QqJjCeAAJOOVsqwiTwyhPUSkA9
nZowqHP3S1lB
=BhUo
-----END PGP SIGNATURE-----
pgpsnpxNtrZd8.pgp
Description: PGP signature
--- End Message ---