Your message dated Sat, 08 Jun 2024 23:40:00 +0000
with message-id <[email protected]>
and subject line Bug#1060358: fixed in rpcbind 1.2.6-8.1
has caused the Debian Bug report #1060358,
regarding rpcbind: install rpcbind into /usr (DEP17 M2)
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.)
--
1060358: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1060358
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: rpcbind
Version: 1.2.6-7
Severity: normal
Tags: patch
User: [email protected]
Usertags: dep17m2
Please find a patch attached to install rpcbind into /usr, for the
currently ongoing UsrMerge effort [1].
It has been build-tested and checked by dumat.
Please review it and upload to unstable during the trixie cycle.
Note: this should not be backported to bookworm. If you intend to
backport, please use dh_movetousr instead.
If your package will change for the t64 transition or otherwise
rename/split/move its binaries (packages) during trixie, please
then upload to experimental and get in touch with the UsrMerge
driver, please see the wiki [1].
Chris
[1] https://wiki.debian.org/UsrMerge
diff -Nru rpcbind-1.2.6/debian/changelog rpcbind-1.2.6/debian/changelog
--- rpcbind-1.2.6/debian/changelog 2023-11-07 00:38:53.000000000 +0100
+++ rpcbind-1.2.6/debian/changelog 2024-01-09 23:23:21.000000000 +0100
@@ -1,3 +1,11 @@
+rpcbind (1.2.6-7.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Install rpcbind into /usr/sbin (DEP17 M2). (Closes: #-1)
+ Update path in init script, systemd unit, et al.
+
+ -- Chris Hofstaedtler <[email protected]> Tue, 09 Jan 2024 23:23:21 +0100
+
rpcbind (1.2.6-7) unstable; urgency=medium
* Install systemd units only once. Thanks to Helmut Grohne
diff -Nru rpcbind-1.2.6/debian/init.d rpcbind-1.2.6/debian/init.d
--- rpcbind-1.2.6/debian/init.d 2023-11-07 00:38:53.000000000 +0100
+++ rpcbind-1.2.6/debian/init.d 2024-01-09 23:23:00.000000000 +0100
@@ -16,7 +16,7 @@
# RPC include NFS and NIS.
### END INIT INFO
-test -f /sbin/rpcbind || exit 0
+test -f /usr/sbin/rpcbind || exit 0
. /lib/lsb/init-functions
@@ -45,15 +45,15 @@
exit 1
fi
[ -x /sbin/restorecon ] && /sbin/restorecon $STATEDIR
- pid=$( pidofproc /sbin/rpcbind )
+ pid=$( pidofproc /usr/sbin/rpcbind )
if [ -n "$pid" ]
then
log_action_msg "Already running: rpcbind"
exit 0
fi
log_daemon_msg "Starting RPC port mapper daemon" "rpcbind"
- start-stop-daemon --start --quiet --oknodo --exec /sbin/rpcbind -- "$@"
- pid=$( pidofproc /sbin/rpcbind )
+ start-stop-daemon --start --quiet --oknodo --exec /usr/sbin/rpcbind -- "$@"
+ pid=$( pidofproc /usr/sbin/rpcbind )
echo -n "$pid" >"$PIDFILE"
# /run/sendsigs.omit.d is created by /etc/init.d/mountkernfs.sh
ln -sf "$PIDFILE" /run/sendsigs.omit.d/rpcbind
@@ -64,7 +64,7 @@
stop ()
{
log_daemon_msg "Stopping RPC port mapper daemon" "rpcbind"
- start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --oknodo --exec /sbin/rpcbind
+ start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --oknodo --exec /usr/sbin/rpcbind
rm -f "$PIDFILE"
log_end_msg $?
}
@@ -90,7 +90,7 @@
start $OPTIONS
;;
status)
- status_of_proc /sbin/rpcbind rpcbind && exit 0 || exit $?
+ status_of_proc /usr/sbin/rpcbind rpcbind && exit 0 || exit $?
;;
*)
log_success_msg "Usage: /etc/init.d/rpcbind {start|stop|force-reload|restart|status}"
diff -Nru rpcbind-1.2.6/debian/rpcbind.service rpcbind-1.2.6/debian/rpcbind.service
--- rpcbind-1.2.6/debian/rpcbind.service 2023-11-07 00:38:53.000000000 +0100
+++ rpcbind-1.2.6/debian/rpcbind.service 2024-01-09 23:22:28.000000000 +0100
@@ -13,7 +13,7 @@
[Service]
Environment="OPTIONS=-w"
-ExecStart=/sbin/rpcbind -f $OPTIONS
+ExecStart=/usr/sbin/rpcbind -f $OPTIONS
EnvironmentFile=-/etc/rpcbind.conf
EnvironmentFile=-/etc/default/rpcbind
Type=notify
diff -Nru rpcbind-1.2.6/debian/rules rpcbind-1.2.6/debian/rules
--- rpcbind-1.2.6/debian/rules 2023-11-07 00:38:53.000000000 +0100
+++ rpcbind-1.2.6/debian/rules 2024-01-09 23:22:09.000000000 +0100
@@ -17,7 +17,7 @@
dh $@
override_dh_auto_configure:
- dh_auto_configure -- --sbindir=/sbin --enable-warmstarts --enable-libwrap --with-statedir=/run/rpcbind --with-rpcuser=_rpc --enable-debug $(CONFIGURE_EXTRA_FLAGS)
+ dh_auto_configure -- --enable-warmstarts --enable-libwrap --with-statedir=/run/rpcbind --with-rpcuser=_rpc --enable-debug $(CONFIGURE_EXTRA_FLAGS)
execute_after_dh_auto_install:
rm -Rf debian/rpcbind/unused
diff -Nru rpcbind-1.2.6/debian/tests/check-if-installed rpcbind-1.2.6/debian/tests/check-if-installed
--- rpcbind-1.2.6/debian/tests/check-if-installed 2023-11-07 00:38:53.000000000 +0100
+++ rpcbind-1.2.6/debian/tests/check-if-installed 2024-01-09 23:22:22.000000000 +0100
@@ -1,5 +1,5 @@
#!/bin/bash
-if [ ! -f "/sbin/rpcbind" ]; then
+if [ ! -f "/usr/sbin/rpcbind" ]; then
>&2 echo "rpcbind is not installed"
fi
--- End Message ---
--- Begin Message ---
Source: rpcbind
Source-Version: 1.2.6-8.1
Done: Chris Hofstaedtler <[email protected]>
We believe that the bug you reported is fixed in the latest version of
rpcbind, 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.
Chris Hofstaedtler <[email protected]> (supplier of updated rpcbind 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: SHA256
Format: 1.8
Date: Thu, 30 May 2024 00:53:15 +0200
Source: rpcbind
Architecture: source
Version: 1.2.6-8.1
Distribution: unstable
Urgency: medium
Maintainer: Josue Ortega <[email protected]>
Changed-By: Chris Hofstaedtler <[email protected]>
Closes: 1060358
Changes:
rpcbind (1.2.6-8.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Install rpcbind into /usr/sbin (DEP17 M2). (Closes: #1060358)
Update path in init script, systemd unit, et al.
Checksums-Sha1:
b9d9255657d82aba1e642e3751c7a6c8609079e6 1933 rpcbind_1.2.6-8.1.dsc
22aac9e46559b35d8253d50d05e062ab897d7f19 12892 rpcbind_1.2.6-8.1.debian.tar.xz
7a15a1e104338bab572d9cdb0ca6e21a62950965 6310 rpcbind_1.2.6-8.1_arm64.buildinfo
Checksums-Sha256:
f6939c91be458a6c8d6da21cd838e1f264fc7a96552b665f0534061fb809884f 1933
rpcbind_1.2.6-8.1.dsc
3c9f0a77b613590844f0c3cc1a472763e1f0561cb520351dc0430e99378a93a8 12892
rpcbind_1.2.6-8.1.debian.tar.xz
9d999e8c11a56d41ce3dc31edd1d8f533dacefeb0ebcd8b41dfcdb0909fb1aad 6310
rpcbind_1.2.6-8.1_arm64.buildinfo
Files:
6138fefe21b44698bc741fb55fdcd4c6 1933 net optional rpcbind_1.2.6-8.1.dsc
c02d8cf7befc2af56d08a9db2851ff61 12892 net optional
rpcbind_1.2.6-8.1.debian.tar.xz
4b1c6286156d02039477f0be61ee33ef 6310 net optional
rpcbind_1.2.6-8.1_arm64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEfRrP+tnggGycTNOSXBPW25MFLgMFAmZXsqsACgkQXBPW25MF
LgOcORAAqTrJQ9bn+4dCKlV5OFcvwLaRN9UIrPVSD6DUsFJxCdKZNDQfDkQv4kb3
wA2WiPmSONgbh13i1qe/5CrLIV8WfNGRr/f4H4hUxwsgMgsEn9OZNAKyjzxdgMrs
ZjFMndXYNEOHqziAQVTaShpYj/j6lZQUD/h+32Kh5LY1YI8bJ6Kl6rbfASY0vPrX
AnyCgd7+W7bRKhNPHz3s5eLP0x0Rt2YLmip3b1Ew1fSjZr911po0Thl029HuupNj
EgwMwNySRT7WVQpiCle73dLg2EDScIboeEYUZtYRMs1MqmTdf1ikJih21sSPPn2y
hWHjnQ2rJPGmNyhUsGnn95jIrNTmqhDYE8QF8F8YxgsCIufusFtUrOKEUt661H9S
whH9sPxLo58q4Hv+A1gERxyjEiJ6MHSIXj74rMHzLPEGm95iMxCTbSYTtbJ133Uw
7OhMjDiFXA7x60RZDxzt3VhmFLFITPZWK2bf4Dku74FRH8lA3xksAeFTfX2arVJ+
BVQdifaYmmPCh3tYrkacoj0mzEKFLg2FygYUO419Zzwbt9OoQFLSUE2iCnwewP1F
glJNvb/jn2Bbi1cCZd2ueTb0yfu6VRcwP40OTt/S59l1t7pPAPY5KYdQZ/B1KaH6
MDQaNzBiIujb7xmU8MZfrHF+vLC3cyNV5nFaBm97xh54XTlAcNo=
=jV21
-----END PGP SIGNATURE-----
pgpkEJ9Yumn_L.pgp
Description: PGP signature
--- End Message ---