Package: debian-goodies
Version: 0.55
Severity: normal
Tags: patch
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Hi,
Nagios3 have spool files to store config about hosts and services checks.
Lsof show it as deleted and checkrestart report :
# checkrestart -v
Found 1 processes using old versions of upgraded files
(1 distinct program)
Process /usr/sbin/nagios3 (PID: 23341)
List of deleted files in use:
/var/lib/nagios3/spool/checkresults/nebmodegLXsr
(1 distinct packages)
Of these, 1 seem to contain init scripts which can be used to restart them:
The following packages seem to have init scripts that could be used
to restart them:
nagios3-core:
23341 /usr/sbin/nagios3
These are the init scripts:
/etc/init.d/nagios3 restart
I suggest to ignore /var/lib/nagios3/spool/checkresults/.
- -- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.35-25-generic (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
Versions of packages debian-goodies depends on:
ii curl 7.21.7-1 Get a file from an HTTP, HTTPS or
ii dctrl-tools [grep-dctrl] 2.18 Command-line tools to process Debi
ii dialog 1.1-20110707-1 Displays user-friendly dialog boxe
ii less 444-1 pager program similar to more
ii perl 5.12.4-2 Larry Wall's Practical Extraction
ii python 2.6.7-2 interactive high-level object-orie
ii whiptail 0.52.11-2.1 Displays user-friendly dialog boxe
Versions of packages debian-goodies recommends:
ii lsof 4.81.dfsg.1-1 List open files
Versions of packages debian-goodies suggests:
pn popularity-contest <none> (no description available)
ii xdg-utils 1.1.0~rc1-2 desktop integration utilities from
pn zenity <none> (no description available)
- -- no debconf information
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iQIcBAEBCAAGBQJOQYobAAoJEJmGUYuaqqClCMQP/0kPAu0vFADPdaroilQZXy32
82VKxDGhV3gzwfbF/6qsyjnBWUF3i4iNtBxeV7nef5w3Y3qEoPmcAVFZStVIHufI
K8XM2JS5aZ8sOHLDWIgzJQnbIADXVkEMA1y7kmQyP2oIEMAZqA/HaOIrWl92P9tr
r+rmV97hl1/7UEtU6GYf93+ABje24X2d7cd42/F3kQLDikvJAAtiIvJimMrFjFPS
hzvnrdQ3nT6oXnimWhrQX6tJsJ6sxHFFkMdARciqkLVn2NhrOK/HQsQH6z95aN2/
WOCz3kiZ9G9hjvVpMJleC92wkc+4Ey6b5BEhaM2t9T2Ru0ExbfM5B43tKFOq9ZHB
zNW3GCll7I3EBMqAFXr8INPy9eu0QYhXfy8GE+xtoooIDL/C8liYpV2ndNZ/8plu
cwgZR0U74SGcMDgNJt0Xl9ez65a6mz6RC/Qn8//VCCV6uuP7F+San5Hz3C2ZL7BM
UukccLKGeagbaj8z8EOx6msYpg4PHAaSSQmyUiIDMB97FPIFK/aug3tCaU3YIU42
xrWDs4tKWuH9nubC8r5R9tXdUGPEzTNBQH9FxMkXPazfmm6Cb1XOZvQsS3XuUDnQ
mS1XgY7D1zfzViJmJj6s11BOKa29ZH65mbPqcissc4O0sZTd7CTHhAoP+qgXFP3U
I3nwUoOKBGuO7yS02vo+
=kvUJ
-----END PGP SIGNATURE-----
--- /usr/sbin/checkrestart 2010-10-14 21:34:26.000000000 +0200
+++ /usr/sbin/checkrestart_new 2011-08-09 20:43:14.954896813 +0200
@@ -294,6 +294,9 @@
# Skip font files
if f.startswith('/var/cache/fontconfig/'):
return 0
+ # Skip nagios spool files
+ if f.startswith('/var/lib/nagios3/spool/checkresults/'):
+ return 0
# Skip, if asked to, files that do not belong to any package
if onlyPackageFiles:
dpkgQuery = ["dpkg-query", "--search", f]