Your message dated Thu, 14 May 2026 16:48:44 +0000
with message-id <[email protected]>
and subject line Bug#1136498: fixed in drbl 5.9.3-1
has caused the Debian Bug report #1136498,
regarding drbl uses pidof but does not depend on procps
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.)
--
1136498: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1136498
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: drbl
Version: 5.9.1-1
Usertags: pidof-without-procps
Dear maintainer(s) of drbl,
it appears that drbl uses `pidof` in its testsuite, or that
at least one of its binary packages uses `pidof` at runtime.
Historically, `pidof` was provided by the Essential package
`sysvinit-tools`, making an explicit dependency unnecessary. However
`pidof` will soon be moved to `procps` and will no longer be part of
the Essential set.
Please add an explicit dependency on `procps`:
* via the `Depends:` field of all binary packages of drbl
that use `pidof` at runtime;
* via the `Build-Depends:` field of drbl, if `pidof` is
used in tests run at build-time;
* via the `Depends:` field of `debian/control/tests`, if `pidof` is
used in autopkgtests.
To prevent any disruption for users of drbl, please add
this dependency now, before `pidof` is moved from `sysvinit-utils` to
`procps`. Alternatively, you could remove all uses of `pidof`.
It is believed that drbl uses `pidof` due to the following
code snippets:
```
path: drbl_5.8.2-1/sbin/drbl-proxy-dhcp
echo $msg_delimiter_star_line
# Checking the services
pidof_dnsmasq="$(LC_LALL=C pidof dnsmasq)"
pidof_dhcpd="$(LC_ALL=C pidof dhcpd)"
pidof_tftpd="$(LC_ALL=C pidof in.tftpd)"
path: drbl_5.8.2-1/sbin/drbl-proxy-dhcp
pidof_dhcpd="$(LC_ALL=C pidof dhcpd)"
pidof_tftpd="$(LC_ALL=C pidof in.tftpd)"
if [ -z "$pidof_dnsmasq" -a -n "$pidof_dhcpd" -a -n "$pidof_tftpd" ]; then
[ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
echo "Proxy DHCP mode disabled successfully!"
path: drbl_5.8.2-1/sbin/drbl-proxy-dhcp
echo $msg_delimiter_star_line
# Checking the services
pidof_dnsmasq="$(LC_LALL=C pidof dnsmasq)"
pidof_dhcpd="$(LC_ALL=C pidof dhcpd)"
pidof_tftpd="$(LC_ALL=C pidof in.tftpd)"
path: drbl_5.8.2-1/sbin/drbl-proxy-dhcp
pidof_dnsmasq="$(LC_LALL=C pidof dnsmasq)"
pidof_dhcpd="$(LC_ALL=C pidof dhcpd)"
pidof_tftpd="$(LC_ALL=C pidof in.tftpd)"
if [ -n "$pidof_dnsmasq" -a -z "$pidof_dhcpd" -a -z "$pidof_tftpd" ]; then
[ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
path: drbl_5.8.2-1/sbin/drbl-proxy-dhcp
# Checking the services
pidof_dnsmasq="$(LC_LALL=C pidof dnsmasq)"
pidof_dhcpd="$(LC_ALL=C pidof dhcpd)"
pidof_tftpd="$(LC_ALL=C pidof in.tftpd)"
if [ -z "$pidof_dnsmasq" -a -n "$pidof_dhcpd" -a -n "$pidof_tftpd" ]; then
path: drbl_5.8.2-1/sbin/drbl-proxy-dhcp
pidof_dhcpd="$(LC_ALL=C pidof dhcpd)"
pidof_tftpd="$(LC_ALL=C pidof in.tftpd)"
if [ -n "$pidof_dnsmasq" -a -z "$pidof_dhcpd" -a -z "$pidof_tftpd" ]; then
[ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
echo "Proxy DHCP mode enabled successfully!"
path: drbl_5.8.2-1/sbin/drbl-proxy-dhcp
pidof_dnsmasq="$(LC_LALL=C pidof dnsmasq)"
pidof_dhcpd="$(LC_ALL=C pidof dhcpd)"
pidof_tftpd="$(LC_ALL=C pidof in.tftpd)"
if [ -z "$pidof_dnsmasq" -a -n "$pidof_dhcpd" -a -n "$pidof_tftpd" ]; then
[ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS
path: drbl_5.8.2-1/sbin/drbl-proxy-dhcp
# Checking the services
pidof_dnsmasq="$(LC_LALL=C pidof dnsmasq)"
pidof_dhcpd="$(LC_ALL=C pidof dhcpd)"
pidof_tftpd="$(LC_ALL=C pidof in.tftpd)"
if [ -n "$pidof_dnsmasq" -a -z "$pidof_dhcpd" -a -z "$pidof_tftpd" ]; then
path: drbl_5.8.2-1/setup/files/RH/rc.sysinit.default-RH.drbl
fi
nashpid=$(pidof nash 2>/dev/null)
[ -n "$nashpid" ] && kill $nashpid >/dev/null 2>&1
unset nashpid
path: drbl_5.8.2-1/setup/files/RH/rc.sysinit.default-RH.drbl
if [ "$PROMPT" != no ]; then
while :; do
pid=$(/sbin/pidof getkey)
[ -n "$pid" ] || [ -e /var/run/getkey_done ] && break
usleep 100000
path: drbl_5.8.2-1/sbin/drbl-all-service
echo -n "Waiting for portmap to be started successfully..."
while [ -z "$to_wait" ]; do
if [ -z "$(LC_ALL=C pidof portmap)" ]; then
initctl start portmap &>/dev/null
ret=$?
path: drbl_5.8.2-1/sbin/drbl-all-service
to_wait=""
while [ -z "$to_wait" ]; do
if [ -z "$(LC_ALL=C pidof portmap)" ]; then
to_wait="no"
else
path: drbl_5.8.2-1/sbin/drbl-all-service
# Stopping rpcbind daemon....
# Starting rpcbind daemon...Already running.. <--
# root@debian:/tmp# pidof rpcbind
# root@debian:/tmp# <-- Actually it's not running.
drbl_startup_service $serv_st stop
path: drbl_5.8.2-1/setup/files/misc/start_udev.drbl
kill_udevd() {
if [ -x /sbin/pidof ]; then
pid=`/sbin/pidof -x udevd`
[ -n "$pid" ] && kill $pid
fi
path: drbl_5.8.2-1/setup/files/misc/start_udev.drbl
kill_udevd() {
if [ -x /sbin/pidof ]; then
pid=`/sbin/pidof -x udevd`
[ -n "$pid" ] && kill $pid
path: drbl_5.8.2-1/setup/files/misc/drblthincli
default_dm="$(drbl-check-dm)"
(cd /etc/rc2.d; ln -fs /etc/init.d/${default_dm} S99${default_dm})
PID_X="$(pidof X)"
for ipid in $PID_X; do
kill -9 $ipid
```
Feel free to close this issue if this is a false positive (for example
if this code is in an unreachable code path).
Regards,
--
Gioele Barabucci
--- End Message ---
--- Begin Message ---
Source: drbl
Source-Version: 5.9.3-1
Done: Georges Khaznadar <[email protected]>
We believe that the bug you reported is fixed in the latest version of
drbl, 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.
Georges Khaznadar <[email protected]> (supplier of updated drbl 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: Thu, 14 May 2026 18:26:45 +0200
Source: drbl
Architecture: source
Version: 5.9.3-1
Distribution: unstable
Urgency: medium
Maintainer: Georges Khaznadar <[email protected]>
Changed-By: Georges Khaznadar <[email protected]>
Closes: 1136498
Changes:
drbl (5.9.3-1) unstable; urgency=medium
.
* New upstream version 5.9.3
* bumped Standards-Version: 4.7.3
* added a dependency on procps. Closes: #1136498
Checksums-Sha1:
8d7e73c5a565020b1a611cbbf2f63cb4ed6b3a74 1890 drbl_5.9.3-1.dsc
007b7b544ce997f3b52aac35a1bd03dd26bd54e0 2475280 drbl_5.9.3.orig.tar.gz
fcf459462622d05242790081f2dec35d986fcf34 11204 drbl_5.9.3-1.debian.tar.xz
fbcd2971ce91a10b4ef3735178abac602d503d54 5405 drbl_5.9.3-1_source.buildinfo
Checksums-Sha256:
399ae19c4b9dcf749a9c0e4b1ac73810267f1af84b2c8b257ce7205bbce5ec9e 1890
drbl_5.9.3-1.dsc
6fe93c1550a4b54ea47fb1b981860c11c034cf30f057d8745ad5204f69e8cfaf 2475280
drbl_5.9.3.orig.tar.gz
f590c0938cbdf3820e7f34264ef9464f44f9da42e085d75111c12062c2f508dd 11204
drbl_5.9.3-1.debian.tar.xz
f56809d23d44966f9a0a0df31f82f523514abf6b56f98c8279648df44728f1cf 5405
drbl_5.9.3-1_source.buildinfo
Files:
f9edeff45789c717d1227134949f8c4b 1890 admin extra drbl_5.9.3-1.dsc
1fcf974cd8f110552d899f0910fe0981 2475280 admin extra drbl_5.9.3.orig.tar.gz
0ec78199578575c4acfb0ee41364fc4c 11204 admin extra drbl_5.9.3-1.debian.tar.xz
9e3697c7218a2fd9e076e7862c47a87e 5405 admin extra drbl_5.9.3-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCgAyFiEEM0CzZP9nFT+3zK6FHCgWkHE2rjkFAmoF+PEUHGdlb3JnZXNr
QGRlYmlhbi5vcmcACgkQHCgWkHE2rjmPiw/+M7cqt/clOtIGoH6LvFjw0Jt9Zh14
22GQrqgr1Rv1JVtU6wU95TT4QajbgqghBhAZ4egGYW19xCHLsXv3HEt3i/HVTC7O
4sF9eGAxRJzvRN3cH/WzCBWKV/+NXslBn8h6QKKt/n1CpaE4rQNw6m2NC1yP8yOz
xBiQ7BDPuRRLkPmqkCOwP7waFf6iVoH4IpFcZEAGrWMsA6SwG0JUevuaGdB8SUD0
Ac6iQr3T1nyZhYV69JLtF5i8ttfJM6J5HwbVyC8+26RchwdQnHPIcGXlLrMM+7+X
+uhCd2mmQRExa7BOjZNXMREcrYndYPoEvACa5JTGjqj13L1jpvZYC2Xb+2e57hro
c8ZPqjQy1Pq1n6Ll3RZ0VU4VE6NoLMqa00LBh4GXUDZx0Hb9o9A7QshS6AbLMmzN
Nco4nmARW6iEvKOalhwDuvh+XK45dfzVYPRE9hIFWo/i/FONCM1F197+RRogwrLb
zFyFKWXtYcYhYWmO46PfgrMSQoDO7t4Eq7eNzGbrXqf5gtW1wCwJpqdxDiAj9mEZ
axJDw4AZc8RatAK0gwL5mB9MryXwVLeFbRVlI2HyNfW7V4JBBE+5ry+Ht+MNZgcK
ffFZxzcSsoBRWV9v+Wv9Bibk7KfCKqp3yRVi8tuRFGRW2I8bCFdWHnxqzEiPnPfQ
dBtgjMdIBwwufVw=
=TS69
-----END PGP SIGNATURE-----
pgpokTkbGMC0x.pgp
Description: PGP signature
--- End Message ---