Bug#928965: unblock: lsb/10.2019051400
Didier 'OdyX' Raboud <[email protected]> Tue, 14 May 2019 08:57:18 +0200
| Newsgroups | gmane.linux.debian.devel.lsb |
|---|---|
| Message-ID | <155781703891.12802.6773525010980790836.reportbug__34371.6869641625$1557817242$gmane$org@gyllingar> |
This is a multi-part MIME message sent by reportbug. --===============6049096518362539886== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock I hereby request an upload authorization towards an unblock for package lsb 10.2019051400, which was not uploaded yet. lsb (10.2019051400) unstable; urgency=medium [ Harald Dunkel ] * pidofproc: use "pidof -c" to avoid pidofproc results from containers or chroots (Closes: #888743) -- Didier Raboud <[email protected]> Tue, 14 May 2019 08:50:39 +0200 It would be exactly identical as 10.2019032400 from experimental, uploaded on March 24, and for which no regressions have been reported. It would fix src:lsb important bug #888743 for buster. The full debdiff is attached. Thanks for your consideration, cheers, OdyX unblock lsb/10.2019051400 --===============6049096518362539886== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="lsb_10.2019051400.debdiff" diff -Nru lsb-10.2019031300/debian/changelog lsb-10.2019051400/debian/changelog --- lsb-10.2019031300/debian/changelog 2019-03-13 21:42:26.000000000 +0100 +++ lsb-10.2019051400/debian/changelog 2019-05-14 08:50:39.000000000 +0200 @@ -1,3 +1,11 @@ +lsb (10.2019051400) unstable; urgency=medium + + [ Harald Dunkel ] + * pidofproc: use "pidof -c" to avoid pidofproc results from containers or chroots + (Closes: #888743) + + -- Didier Raboud <[email protected]> Tue, 14 May 2019 08:50:39 +0200 + lsb (10.2019031300) unstable; urgency=low [ Dmitry Bogatov ] diff -Nru lsb-10.2019031300/init-functions lsb-10.2019051400/init-functions --- lsb-10.2019031300/init-functions 2019-03-13 21:42:26.000000000 +0100 +++ lsb-10.2019051400/init-functions 2019-05-14 08:50:39.000000000 +0200 @@ -107,7 +107,7 @@ # pid file doesn't exist, try to find the pid nevertheless if [ -x /bin/pidof ] && [ ! "$specified" ]; then status="0" - /bin/pidof -o %PPID -x $1 || status="$?" + /bin/pidof -c -o %PPID -x $1 || status="$?" if [ "$status" = 1 ]; then return 3 # program is not running fi --===============6049096518362539886==--