Your message dated Mon, 29 Apr 2024 00:19:28 +0000
with message-id <e1s1ejw-001gad...@fasolo.debian.org>
and subject line Bug#1059189: fixed in quota 4.06-1.1
has caused the Debian Bug report #1059189,
regarding quota: move files from / to /usr
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 ow...@bugs.debian.org
immediately.)


-- 
1059189: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1059189
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: quota
Version: 4.06-1
Severity: normal
Tags: patch moreinfo
User: helm...@debian.org
Usertags: dep17m2

Dear Maintainer,

your package installs programs directly into /sbin. For the
ongoing Debian UsrMerge effort [1] these files should move to
/usr/sbin in the trixie cycle.

I'm attaching a mostly mechanical patch to implement that. Please
review, test and upload at your earliest convenience. Also see the
wiki about uploading to experimental first, and to unstable after a
few days.

If during the trixie cycle your package will undergo structural
changes or any other file moves, please see the wiki and upload
to experimental first when these changes are done.

Chris

[1] https://wiki.debian.org/UsrMerge
diff -Nru quota-4.06/debian/changelog quota-4.06/debian/changelog
--- quota-4.06/debian/changelog	2021-02-09 13:22:57.000000000 +0100
+++ quota-4.06/debian/changelog	2023-12-21 01:16:34.000000000 +0100
@@ -1,3 +1,11 @@
+quota (4.06-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Install binary programs into /usr/sbin. (Closes: #-1)
+  * Update paths to /usr/sbin in (init) scripts, systemd service.
+
+ -- Chris Hofstaedtler <z...@debian.org>  Thu, 21 Dec 2023 01:16:34 +0100
+
 quota (4.06-1) unstable; urgency=medium
 
   * New upstream version 4.06
diff -Nru quota-4.06/debian/dirs quota-4.06/debian/dirs
--- quota-4.06/debian/dirs	2021-02-09 13:05:00.000000000 +0100
+++ quota-4.06/debian/dirs	2023-12-21 01:16:34.000000000 +0100
@@ -1,6 +1,5 @@
 usr/bin
 usr/sbin
-sbin
 etc/init.d
 usr/share/man/man1
 usr/share/man/man2
diff -Nru quota-4.06/debian/quota.init quota-4.06/debian/quota.init
--- quota-4.06/debian/quota.init	2021-02-09 13:05:00.000000000 +0100
+++ quota-4.06/debian/quota.init	2023-12-21 01:16:34.000000000 +0100
@@ -13,7 +13,7 @@
 DESC="quota service"
 
 # names of binaries
-on=/sbin/quotaon
+on=/usr/sbin/quotaon
 
 set -e
 
diff -Nru quota-4.06/debian/quota-initial-check.sh quota-4.06/debian/quota-initial-check.sh
--- quota-4.06/debian/quota-initial-check.sh	2021-02-09 13:05:00.000000000 +0100
+++ quota-4.06/debian/quota-initial-check.sh	2023-12-21 01:16:34.000000000 +0100
@@ -1,8 +1,8 @@
 #!/bin/sh
 
 # names of binaries
-check=/sbin/quotacheck
-on=/sbin/quotaon
+check=/usr/sbin/quotacheck
+on=/usr/sbin/quotaon
 quotaisnew=/var/lib/quota/new
 
 ALLFLAGS=-aug
diff -Nru quota-4.06/debian/quotaoff.sh quota-4.06/debian/quotaoff.sh
--- quota-4.06/debian/quotaoff.sh	2021-02-09 13:05:00.000000000 +0100
+++ quota-4.06/debian/quotaoff.sh	2023-12-21 01:16:34.000000000 +0100
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 # names of binaries
-off=/sbin/quotaoff
+off=/usr/sbin/quotaoff
 quotaisoff=/var/lib/quota/off
 ALLFLAGS=-aug
 
diff -Nru quota-4.06/debian/quotaon.sh quota-4.06/debian/quotaon.sh
--- quota-4.06/debian/quotaon.sh	2021-02-09 13:05:00.000000000 +0100
+++ quota-4.06/debian/quotaon.sh	2023-12-21 01:16:34.000000000 +0100
@@ -1,8 +1,8 @@
 #!/bin/sh
 
 # names of binaries
-check=/sbin/quotacheck
-on=/sbin/quotaon
+check=/usr/sbin/quotacheck
+on=/usr/sbin/quotaon
 quotaisoff=/var/lib/quota/off
 quotaisnew=/var/lib/quota/new
 forcequotacheck=/forcequotacheck
diff -Nru quota-4.06/debian/quotarpc.service quota-4.06/debian/quotarpc.service
--- quota-4.06/debian/quotarpc.service	2021-02-09 13:05:00.000000000 +0100
+++ quota-4.06/debian/quotarpc.service	2023-12-21 01:16:34.000000000 +0100
@@ -5,7 +5,7 @@
 PartOf=nfs-server.target
 After=rpcbind.service
 Before=nfs-server.target
-ConditionFileIsExecutable=/sbin/rpcbind
+ConditionFileIsExecutable=/usr/sbin/rpcbind
  
 [Service]
 Type=forking
diff -Nru quota-4.06/debian/rules quota-4.06/debian/rules
--- quota-4.06/debian/rules	2021-02-09 13:05:00.000000000 +0100
+++ quota-4.06/debian/rules	2023-12-21 01:16:23.000000000 +0100
@@ -57,10 +57,6 @@
 	# Add here commands to install the package into debian/quota.
 	$(MAKE) DESTDIR=`pwd`/debian/quota install
 
-	-mv `pwd`/debian/quota/usr/sbin/quotacheck `pwd`/debian/quota/sbin
-	-mv `pwd`/debian/quota/usr/sbin/quotaon `pwd`/debian/quota/sbin
-	-mv `pwd`/debian/quota/usr/sbin/quotaoff `pwd`/debian/quota/sbin
-
 # Build architecture-independent files here.
 binary-indep: build install
 # We have nothing to do by default.

--- End Message ---
--- Begin Message ---
Source: quota
Source-Version: 4.06-1.1
Done: Chris Hofstaedtler <z...@debian.org>

We believe that the bug you reported is fixed in the latest version of
quota, 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 1059...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Chris Hofstaedtler <z...@debian.org> (supplier of updated quota 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 ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Mon, 22 Apr 2024 01:36:54 +0200
Source: quota
Architecture: source
Version: 4.06-1.1
Distribution: unstable
Urgency: medium
Maintainer: Michael Meskes <mes...@debian.org>
Changed-By: Chris Hofstaedtler <z...@debian.org>
Closes: 1059189
Changes:
 quota (4.06-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Install binary programs into /usr/sbin. (Closes: #1059189)
   * Update paths to /usr/sbin in (init) scripts, systemd service.
Checksums-Sha1:
 6b7bfb75b972420748df8d9309aa4f3140bb7265 1853 quota_4.06-1.1.dsc
 0956ecf1f3c3ff5ca7dd33da9c4cfbfaf4cbdb4c 39360 quota_4.06-1.1.debian.tar.xz
 90734bd22cf227e9dd52409cec816c18c89d04fe 7204 quota_4.06-1.1_arm64.buildinfo
Checksums-Sha256:
 4e93eede634453fa403eec23d2efe9cd9d6d1277f29d7a8163103a4f3d2b3f67 1853 
quota_4.06-1.1.dsc
 874e500f84ea2d1fa4ffc6cd68324ee14593863b92ff35d845e76229feefae46 39360 
quota_4.06-1.1.debian.tar.xz
 753c72fd13ffc4fc042a7ffde4c0e1dd2e08474c6f3cc10588d9d2b73a48c360 7204 
quota_4.06-1.1_arm64.buildinfo
Files:
 aa41fa5ee5f2b89c178adccadbd16e03 1853 admin optional quota_4.06-1.1.dsc
 750d9785afda71c8e8fb35a60f9b07f0 39360 admin optional 
quota_4.06-1.1.debian.tar.xz
 afeff742408e9afe6a501e3ae43bdc36 7204 admin optional 
quota_4.06-1.1_arm64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEfRrP+tnggGycTNOSXBPW25MFLgMFAmYlo4gACgkQXBPW25MF
LgNLdRAAiK8y/uNoq1kxfCyFHmkb4/DN2kZKU2aTdln1PTpBash0Y7rsnCLcAAh9
I23tJ17BFnoQifUdk7eJ/4PXcuY5c5p/EgrfZGthPkNZKnFCePRjphdC0mDnN+PX
9WHfJflKDXz8f+7HTPPKfzeJs/vmw/4Yc9uaBJXQopSdz/vON51tgVgohSefY/CT
sqkl0di4BDLnbOVeoKw1LOzZU/cPv/Dmu1shMa4fwGTvH3f+EmTqN1+nm4v3FTbu
ZFjkTkjUf/+qC8Z1dyZ0WFRsICkR04P3S9Mbj4MmtV8HTlTfoIRbA8vPpkuF90Ma
aMLGlYCVErNsAO0eVsqwzHEZoER9jPzGPbD9tOg2Wx0NKI2y/aRv1Rdc+YBK6E60
5+MbCpds73Dnh/D6+C77TWeN/qguzGxDY/X7c7AFGA3FQdH4k45KuatSBRhj/8tD
EVYOzN6MUc5g3dEnJ/QXkSKklkafc0TGbEvUe2HUZIUVKinZNZduO/VC9WWbxXmb
0xLlsVtc1ifCwGuXAV9npKyDtNMtWym9s0RIdDFTq/uMAQhD5P/5TMIY/b2V0y2k
Ejp4B9ihaNZSSlu0/XYBkIJU/uXxjCsu45ZmopdiFEwG2USNBb79xpvl0asZLZ5K
WUtj4UyvDmnO7no/liiq7QhBiTOeQJ8ExwmvJik4keC+Zw95nSM=
=94PR
-----END PGP SIGNATURE-----

Attachment: pgpHpfBIBdeWa.pgp
Description: PGP signature


--- End Message ---

Reply via email to