Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: pu
The attached two patches, proposed for s-p-u help fixing two bugs which I consider worth for stable: * Document the newly introduced "map untrusted to domain" parameter and its default value that can lead to disruptive behavioral changes when upgrading from pre-3.5 versions. Closes: #623190 * Fix "tdb2.so undefined symbol: dyn_get_STATEDIR" by fixing a typo in fhs-filespath.patch. Closes: #629183, LP: #789097 The former would indeed have been better in the first release in squeeze but the suggestion came after the release. So let's at least warn those people who haven't upgraded yet. The latter was originally reported in Launchpad, then we (Debian maintainers) were pointed at the problem. The fix is really trivial but mandatory for using TDB2 as storage backend for samba data files. And this is indeed a very trivial change to fix a really stupid mistake. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.39-1-686-pae (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
Index: NEWS =================================================================== --- NEWS (révision 3755) +++ NEWS (révision 3803) @@ -1,3 +1,15 @@ +samba (2:3.5.6~dfsg-3squeeze4) stable-proposed-updates; urgency=low + + * Please note that upgrading to 3.5.* series, the "map untrusted to + domain" configuration parameters was introduced and defaults to "No". + It means that users originating from an untrusted domain are no + longer mapped to the domain the samba server is member of. + This could lead to behavioral changes if the pre-3.5 behavior of + mapping these user to the domain was needed. See #623190 for + details. + + -- Christian Perrier <bubu...@debian.org> Thu, 12 May 2011 19:51:52 +0200 + samba (2:3.4.0-1) unstable; urgency=low * Default passdb backend changed in samba 3.4.0 and above Index: changelog =================================================================== --- changelog (révision 3755) +++ changelog (révision 3803) @@ -1,3 +1,12 @@ +samba (2:3.5.6~dfsg-3squeeze4) UNRELEASED; urgency=low + + * Document the newly introduced "map untrusted to domain" parameter + and its default value that can lead to disruptive behavioral + changes when upgrading from pre-3.5 versions. + Closes: #623190 + + -- Christian Perrier <bubu...@debian.org> Sun, 15 May 2011 18:29:16 +0200 + samba (2:3.5.6~dfsg-3squeeze3) stable-proposed-updates; urgency=low * Cherry-picked fixes from samba 3.5.8 for some important bugs:
Index: patches/fhs-filespaths.patch =================================================================== --- patches/fhs-filespaths.patch (révision 3802) +++ patches/fhs-filespaths.patch (copie de travail) @@ -74,7 +74,7 @@ /* fall back to the private directory, which, despite its name, is usually on shared storage */ - db_path = talloc_asprintf(NULL, "%s/idmap2.tdb", lp_private_dir()); -+ db_path = talloc_asprintf(NULL, "%s/idmap2.tdb", dyn_get_STATEDIR()); ++ db_path = talloc_asprintf(NULL, "%s/idmap2.tdb", get_dyn_STATEDIR()); } NT_STATUS_HAVE_NO_MEMORY(db_path); Index: changelog =================================================================== --- changelog (révision 3802) +++ changelog (copie de travail) @@ -4,6 +4,8 @@ and its default value that can lead to disruptive behavioral changes when upgrading from pre-3.5 versions. Closes: #623190 + * Fix "tdb2.so undefined symbol: dyn_get_STATEDIR" by fixing a typo + in fhs-filespath.patch. Closes: #629183, LP: #789097 -- Christian Perrier <bubu...@debian.org> Sun, 15 May 2011 18:29:16 +0200