Your message dated Wed, 20 Jul 2011 16:32:25 +0000
with message-id <[email protected]>
and subject line Bug#628880: fixed in cifs-utils 2:5.0-1
has caused the Debian Bug report #628880,
regarding cifs-utils: new upstream version: 5.0
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.)
--
628880: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628880
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: cifs-utils
Severity: wishlist
----- Forwarded message from Jeff Layton <[email protected]> -----
Date: Wed, 1 Jun 2011 16:11:37 -0400
From: Jeff Layton <[email protected]>
To: [email protected], [email protected], [email protected]
Subject: [Samba] ANNOUNCE: cifs-utils release 5.0 available for download
X-Mailer: Claws Mail 3.7.9 (GTK+ 2.24.4; x86_64-redhat-linux-gnu)
X-CRM114-Status: Good ( pR: 29.0183 )
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
It's been a while since our last release and Shirish's new cifs.idmap
utility has now been merged. The last release was 4.9, so I've been a
bit torn -- should I call this one 4.10 or 5.0?
Then I figured...when in doubt, copy Linus. Since he just bumped the
major version number of the kernel, this is now version 5.0.
The main changes:
- - mount.cifs always uses the original device string to ensure that umounts
by unprivileged users are not problematic
- - there is a new cifs.idmap program for handling idmapping upcalls
- - a lot of manpage patches
webpage: http://linux-cifs.samba.org/cifs-utils/
tarball: ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/
git: git://git.samba.org/cifs-utils.git
gitweb: http://git.samba.org/?p=cifs-utils.git;a=summary
Detailed changelog since 4.9:
commit 201e3fcc8fd2437990d061b29283de256a7f37fd
Author: Jeff Layton <[email protected]>
Date: Tue Mar 15 13:30:37 2011 -0400
autoconf: bump version to 4.9.1 for interim builds
Signed-off-by: Jeff Layton <[email protected]>
commit bc2bb65950525081457575a833251355c61b6599
Author: Pavel Shilovsky <[email protected]>
Date: Tue Mar 15 13:30:44 2011 -0400
manpage: add entry for strictcache option
Signed-off-by: Pavel Shilovsky <[email protected]>
commit ffac601c45b167a1af1d35561f1c01ab0813cc14
Author: Luk Claes <[email protected]>
Date: Fri Apr 8 14:13:35 2011 -0400
mount.cifs: Use original device string all the way
Don't construct a device name, but use the original device string
to mount so the device name in /proc/mounts matches the one in
/etc/fstab.
Signed-off-by: Luk Claes <[email protected]>
commit 00e7fcbe9f519a8251707321eadd34cf156447e5
Author: Jeff Layton <[email protected]>
Date: Fri Apr 15 07:49:51 2011 -0400
mount.cifs: fix test for strtoul failure in mount.cifs
It currently test to see if errno == -EINVAL and whether the endptr
is '\0'. That's not correct however. What we really want it to do is
check to see if any error occurred by setting errno to 0 before the
conversion. If one did, then try to treat the value as a name.
Also fix a bogus compiler warning about cruid being uninitialized.
Reported-by: Jian Li <[email protected]>
Signed-off-by: Jeff Layton <[email protected]>
commit a6c23f4421ae02de9f01bb6264a03ede9970cb19
Author: Pavel Shilovsky <[email protected]>
Date: Fri May 20 07:36:33 2011 -0400
manpage: make serverino and noserverino option descriptions clear
Signed-off-by: Pavel Shilovsky <[email protected]>
commit f699e959d2afadffc6a4db96b57f873f7dd5e9d9
Author: Shirish Pargaonkar <[email protected]>
Date: Tue May 24 14:49:56 2011 -0400
cifs-utils: Create new binary cifs.idmap for sid to uid/gid mapping (try #4)
Handle cifs.idmap type of key. Extract a SID string from the description
and map it to either an uid or gid using winbind APIs.
If that fails (e.g. because winbind is not installed/running or winbind
returns an error), kernel assigns uid and gid (from mount superblock).
Enable including winbind header files and idmapping code conditional
to winbind devel rpms (header and library).
An entry such as this
create cifs.idmap * * /usr/sbin/cifs.idmap %k
is needed in the file /etc/request-key.conf.
[Note: Modified to not build new tool by default, and to fix up some
whitespace munging]
Modified-by: Jeff Layton <[email protected]>
Signed-off-by: Shirish Pargaonkar <[email protected]>
commit 0a32d6990e67c48753435e986c7073876cafe7f3
Author: Jeff Layton <[email protected]>
Date: Tue May 24 14:49:58 2011 -0400
cifs.idmap: remove 2 unused variables
cifs.idmap.c: In function ‘cifs_idmap’:
cifs.idmap.c:85:16: warning: unused variable ‘gr’ [-Wunused-variable]
cifs.idmap.c:84:17: warning: unused variable ‘pw’ [-Wunused-variable]
Signed-off-by: Jeff Layton <[email protected]>
commit fd6405b059d3d066ecdff90a4b0024d28795948e
Author: Jeff Layton <[email protected]>
Date: Tue May 24 14:50:00 2011 -0400
cifs.upcall: don't syslog usage message
Signed-off-by: Jeff Layton <[email protected]>
commit 3a2a7fc40d98389766c82435a5b5332ab2272838
Author: Jeff Layton <[email protected]>
Date: Thu May 26 14:56:37 2011 -0400
manpage: update the description of the wsize= option
...to account for the changes in the async write patchset.
Signed-off-by: Jeff Layton <[email protected]>
commit a669fb3bb4411e4f4d95de1a1a2ec9cccfe14873
Author: Pavel Shilovsky <[email protected]>
Date: Mon May 30 20:02:19 2011 -0400
manpage: add decription about matching superblock to wsize= option
...according to shared superblock capability merged into cifs-2.6
git tree recently.
Signed-off-by: Pavel Shilovsky <[email protected]>
commit 9954c780b8b5db38ea9dfd920ff5bba0f683a9be
Author: Pavel Shilovsky <[email protected]>
Date: Mon May 30 20:02:27 2011 -0400
manpage: add entry for rwpidforward option
Signed-off-by: Pavel Shilovsky <[email protected]>
commit bb95a848469d6912b5f0d06068006cc824c590f6
Author: Jeff Layton <[email protected]>
Date: Mon May 30 20:05:01 2011 -0400
manpage: change mention of kernel 2.6.40 to 3.0.0
...to match the change in versioning.
Signed-off-by: Jeff Layton <[email protected]>
commit cbce1a68c419301904ad1fdc7c55b1d3b86fbdff
Author: Jeff Layton <[email protected]>
Date: Wed Jun 1 08:47:21 2011 -0400
README: suggest use of autoreconf -i
Otherwise you get warnings about missing files with recent autotools.
Signed-off-by: Jeff Layton <[email protected]>
commit 7c04b90be021e03bc2ab97a9c91f66635cdca30b
Author: Shirish Pargaonkar <[email protected]>
Date: Wed Jun 1 15:27:10 2011 -0400
cifs-utils: Create man pages for cifs.idmap program (try #2)
Create man pages for program cifs.idmap
Enable cifs.idmap config option by default.
Signed-off-by: Shirish Pargaonkar <[email protected]>
commit 37c58ba38983f64e5ff873de188611622180cf9f
Author: Jeff Layton <[email protected]>
Date: Wed Jun 1 15:27:17 2011 -0400
manpage: fix some manpage nits
Fix alignment of columns and trailing whitespace in cifs.idmap(8). Fix
request-key.conf(5) reference in cifs.idmap(8) and cifs.upcall(8).
Signed-off-by: Jeff Layton <[email protected]>
commit ecfe8f9a6f3b9943f0de449960bba95792656fb4
Author: Jeff Layton <[email protected]>
Date: Wed Jun 1 15:41:45 2011 -0400
autoconf: bump release to 5.0
Signed-off-by: Jeff Layton <[email protected]>
- --
Jeff Layton <[email protected]>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (GNU/Linux)
iEYEARECAAYFAk3mnQoACgkQyP0gxQMdzIB8GwCfSpJEyEamyL8gGksz3NC/Tuh4
VE4An0dtqiczDaA1x/zAquUVh43MtXih
=alZB
-----END PGP SIGNATURE-----
--
To unsubscribe from this list go to the following URL and read the
instructions: https://lists.samba.org/mailman/options/samba
----- End forwarded message -----
--
signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: cifs-utils
Source-Version: 2:5.0-1
We believe that the bug you reported is fixed in the latest version of
cifs-utils, which is due to be installed in the Debian FTP archive:
cifs-utils_5.0-1.debian.tar.gz
to main/c/cifs-utils/cifs-utils_5.0-1.debian.tar.gz
cifs-utils_5.0-1.dsc
to main/c/cifs-utils/cifs-utils_5.0-1.dsc
cifs-utils_5.0-1_i386.deb
to main/c/cifs-utils/cifs-utils_5.0-1_i386.deb
cifs-utils_5.0.orig.tar.bz2
to main/c/cifs-utils/cifs-utils_5.0.orig.tar.bz2
smbfs_5.0-1_i386.deb
to main/c/cifs-utils/smbfs_5.0-1_i386.deb
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.
Luk Claes <[email protected]> (supplier of updated cifs-utils 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: SHA1
Format: 1.8
Date: Wed, 20 Jul 2011 18:25:39 +0200
Source: cifs-utils
Binary: cifs-utils smbfs
Architecture: source i386
Version: 2:5.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Samba Maintainers <[email protected]>
Changed-By: Luk Claes <[email protected]>
Description:
cifs-utils - Common Internet File System utilities
smbfs - Common Internet File System utilities - compatibility package
Closes: 620818 628880
Changes:
cifs-utils (2:5.0-1) unstable; urgency=low
.
* New upstream release. Closes: #628880.
- mount.cifs: Use original device string all the way.
Closes: #620818.
* Install cifs.idmap upcall binary and manpage
- Add libwbclient-dev to Build-Depends
- Add winbind to Recommends
* Install cifscreds binary
Checksums-Sha1:
1c4d96f695b1cff40abb54fdcf3542d94298d153 1483 cifs-utils_5.0-1.dsc
3b92df032dcef129c21a2f8f96658add2ec0cca4 355658 cifs-utils_5.0.orig.tar.bz2
0692474d94f8e59318a5f42205c5252e86968f16 4699 cifs-utils_5.0-1.debian.tar.gz
11c51f7898a2d6f13b4c1671c92b5ecef4a6195a 53108 cifs-utils_5.0-1_i386.deb
2bcbccf21da8c2ce43a927f585e54ce2d144609b 4792 smbfs_5.0-1_i386.deb
Checksums-Sha256:
d88d57906a7101c766d3cf9164a3578097f52c7727822a7f6a5feded5e95756c 1483
cifs-utils_5.0-1.dsc
3ae57eb4edef2bb2e71616d80f010750a3da85d722ba5c651789d2398e1c814f 355658
cifs-utils_5.0.orig.tar.bz2
7b065a0fa6afdd944ca2e0eb2abdd0955c2fdef44a4450fd4edbf8d0d7a0e1ff 4699
cifs-utils_5.0-1.debian.tar.gz
78961e356b08e13e0a3ff6f50efe289c9b44a361b1b0b3e6594fccb8fdb49c44 53108
cifs-utils_5.0-1_i386.deb
a8e57ffc11029abab994dd631fdb8fde9cc1b41544612b78798ff47a76116130 4792
smbfs_5.0-1_i386.deb
Files:
50946cef7c335146f77782ff7cee2d6b 1483 otherosfs optional cifs-utils_5.0-1.dsc
50e55aed038e55b4a7668ee628f934e4 355658 otherosfs optional
cifs-utils_5.0.orig.tar.bz2
0e6916de37c081c129c6f8e92ec08fd2 4699 otherosfs optional
cifs-utils_5.0-1.debian.tar.gz
a3eea1500e7c72ffd4e537f38aa5019d 53108 otherosfs optional
cifs-utils_5.0-1_i386.deb
b8c39172a0bf498b5dd2f9f418f21f27 4792 otherosfs optional smbfs_5.0-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iEYEARECAAYFAk4nAbIACgkQ5UTeB5t8Mo2qcwCeMYb6P5TBiByaT+LXTUdN995z
HUsAoKQuHsP0EALgjYrB1Oaqh0nc8Fnk
=jMbg
-----END PGP SIGNATURE-----
--- End Message ---