summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* VERSION: Disable GIT_SNAPSHOT for the 4.13.0rc3 release.samba-4.13.0rc3Karolin Seeger2020-08-281-1/+1
| | | | Signed-off-by: Karolin Seeger <kseeger@samba.org>
* WHATSNEW: Add release notes for Samba 4.13.0rc3.Karolin Seeger2020-08-281-1/+17
| | | | Signed-off-by: Karolin Seeger <kseeger@samba.org>
* ctdb-recoverd: Rename update_local_flags() -> update_flags()Martin Schwenke2020-08-271-6/+6
| | | | | | | | | | | | This also updates remote flags so the name is misleading. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 4aa8e72d60e92951b35190d2ffcfdb1bfb756609) Autobuild-User(v4-13-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-13-test): Thu Aug 27 12:11:01 UTC 2020 on sn-devel-184
* ctdb-recoverd: Change update_local_flags() to use already retrieved nodemapsMartin Schwenke2020-08-271-17/+9
| | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 702c7c4934e79a9161fdc59df70df30ae492d89f)
* ctdb-recoverd: Get remote nodemaps earlierMartin Schwenke2020-08-271-7/+7
| | | | | | | | | update_local_flags() will be changed to use these nodemaps. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 910a0b3b747a987ba69b6a0b6256e964b7d85dfe)
* ctdb-recoverd: Do not fetch the nodemap from the recovery masterMartin Schwenke2020-08-271-1/+10
| | | | | | | | | | | | The nodemap has already been fetched from the local node and is actually passed to this function. Care must be taken to avoid referencing the "remote" nodemap for the recovery master. It also isn't useful to do so, since it would be the same nodemap. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit d50919b0cb28f299c9b6985271b29d4f27c5f619)
* ctdb-recoverd: Change get_remote_nodemaps() to use connected nodesMartin Schwenke2020-08-271-3/+2
| | | | | | | | | | | | | | | | | | The plan here is to use the nodemaps retrieved by get_remote_nodes() in update_local_flags(). This will improve efficiency, since get_remote_nodes() fetches flags from nodes in parallel. It also means that get_remote_nodes() can be used exactly once early on in main_loop() to retrieve remote nodemaps. Retrieving nodemaps multiple times is unnecessary and racy - a single monitoring iteration should not fetch flags multiple times and compare them. This introduces a temporary behaviour change but it will be of no consequence when the above changes are made. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 762d1d8a9605f97973a2c1176de5d29fcc61d15a)
* ctdb-recoverd: Fix node_pnn check and assignment of nodemap into arrayMartin Schwenke2020-08-271-3/+11
| | | | | | | | | This array is indexed by the same index as nodemap, not the PNN. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 368c83bfe3bbfff568d14f65e7b1ffa41d5349ac)
* ctdb-recoverd: Add fail callback to assign banning creditsMartin Schwenke2020-08-271-8/+17
| | | | | | | | | | Also drop error handling in main_loop() that is replaced by this change. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 10ce0dbf1c11eaaab7b28b6bbd014235a36d1962)
* ctdb-recoverd: Add an intermediate state struct for nodemap fetchingMartin Schwenke2020-08-271-2/+11
| | | | | | | | | This will allow an error callback to be added. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit a079ee31690cf7110f46b41989ffcfb83b7626d6)
* ctdb-recoverd: Move memory allocation into get_remote_nodemaps()Martin Schwenke2020-08-271-12/+20
| | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 2eaa0af6160588b6e3364b181d0976477d12b51b)
* ctdb-recoverd: Change signature of get_remote_nodemaps()Martin Schwenke2020-08-271-6/+7
| | | | | | | | | | Change 1st argument to a rec context, since this will be needed later. Drop the nodemap argument and access it via rec->nodemap instead. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 3324dd272c7dafa92cd9c3fd0af8f50084bcdaaa)
* ctdb-recoverd: Fix a local memory leakMartin Schwenke2020-08-271-0/+1
| | | | | | | | | | | | The memory is allocated off the memory context used by the current iteration of main loop. It is freed when main loop completes the fix doesn't require backporting to stable branches. However, it is sloppy so it is worth fixing. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit d2d90f250214582d7124b8137aa2cf5032b2f285)
* ctdb-recoverd: Basic cleanups for get_remote_nodemaps()Martin Schwenke2020-08-271-16/+23
| | | | | | | | | | | Don't log an error on failure - let the caller can do this. Apart from this: fix up coding style and modernise the remaining error message. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14466 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 52f520d39cd92e1cf2413fd7e0dd362debd6f463)
* ctdb-recoverd: Simplify calculation of new flagsMartin Schwenke2020-08-271-3/+1
| | | | | | | | | | Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> Autobuild-User(master): Martin Schwenke <martins@samba.org> Autobuild-Date(master): Fri Jul 24 06:03:23 UTC 2020 on sn-devel-184 (cherry picked from commit 5ce6133a75107abdcb9fcfd93bc7594812dc5055)
* ctdb-recoverd: Correctly find nodemap entry for pnnMartin Schwenke2020-08-271-2/+8
| | | | | | Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 3654e416770cc7521dcc3c15976daeba37023304)
* ctdb-recoverd: Do not retrieve nodemap from recovery masterMartin Schwenke2020-08-271-16/+2
| | | | | | | | It is already in rec->nodemap. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 9475ab044161e687b9ced3a477746393565b49b1)
* ctdb-recoverd: Flatten update_flags_on_all_nodes()Martin Schwenke2020-08-271-43/+26
| | | | | | | | | | | | | | | | | | The logic currently in ctdb_ctrl_modflags() will be optimised so that it no longer matches the pattern for a control function. So, remove this function and squash its functionality into the only caller. Although there are some superficial changes, the behaviour is unchanged. Flattening the 2 functions produces some seriously weird logic for setting the new flags, to the point where using ctdb_ctrl_modflags() for this purpose now looks very strange. The weirdness will be cleaned up in a subsequent commit. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 0c6a7db3ba84b8355359b0a8c52690b234bb866d)
* ctdb-recoverd: Move ctdb_ctrl_modflags() to ctdb_recoverd.cMartin Schwenke2020-08-273-70/+68
| | | | | | | | This file is the only user of this function. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit a88c10c5a9afcf0a3dcadef07dd95af498bfa47a)
* ctdb-recoverd: Improve a call to update_flags_on_all_nodes()Martin Schwenke2020-08-271-1/+1
| | | | | | | | This should take a PNN, not an array index. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit b1e631ff929fd87392a80895d1c8d265d9df42dc)
* ctdb-recoverd: Use update_flags_on_all_nodes()Martin Schwenke2020-08-271-12/+6
| | | | | | | | This is clearer than using the MODFLAGS control directly. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 915d24ac12d27c21649d9e64d201d9df9d583129)
* ctdb-recoverd: Introduce some local variables to improve readabilityMartin Schwenke2020-08-271-10/+21
| | | | | | Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit f681c0e947741151f8fb95d88edddfd732166dc1)
* ctdb-recoverd: Change update_flags_on_all_nodes() to take rec argumentMartin Schwenke2020-08-271-4/+5
| | | | | | | | | This makes fields such as recmaster and nodemap easily available if required. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit cb3a3147b7a3a29d7806733791e1fa6ba2e46680)
* ctdb-recoverd: Drop unused nodemap argument from update_flags_on_all_nodes()Martin Schwenke2020-08-271-5/+15
| | | | | | | | | An unused argument needlessly extends the length of function calls. A subsequent change will allow rec->nodemap to be used if necessary. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 6982fcb3e6c940d0047aac3b6bfbc9dfdc8d7214)
* docs: Add missing winexe manpageGünther Deschner2020-08-272-0/+189
| | | | | | | | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14318 Guenther Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Thu Aug 20 12:55:23 UTC 2020 on sn-devel-184 (cherry picked from commit a9b6a8378e5db19d5d5ecd42f08ec3abd49ad5b8)
* WHATSNEW: list deprecated parametersAndrew Bartlett2020-08-241-0/+11
| | | | | | | | | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Aug 18 01:32:21 UTC 2020 on sn-devel-184 (cherry picked from commit 20606fd0a4c4697ff99da59f748af6908d929901) Autobuild-User(v4-13-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-13-test): Mon Aug 24 15:13:30 UTC 2020 on sn-devel-184
* docs: deprecate "raw NTLMv2 auth"Andrew Bartlett2020-08-241-0/+8
| | | | | | | | | | | This parameter is appicable only to SMBv1 and we are deprecating SMBv1 specific authentication options for possible removal. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 8c9d9441edce2e8d7f0428d0ec5e209ed8a55dbc)
* docs: deprecate "client plaintext auth"Andrew Bartlett2020-08-241-0/+9
| | | | | | | | | | | This parameter is appicable only to SMBv1 and we are deprecating SMBv1 specific authentication options for possible removal. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 37583b19d2c3dbf3e9d0498a39b8b9d9c727e1d4)
* docs: deprecate "client NTLMv2 auth"Andrew Bartlett2020-08-241-0/+9
| | | | | | | | | | | This parameter is appicable only to SMBv1 and we are deprecating SMBv1 specific authentication options for possible removal. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 5543c11c8b007b49641758428af7ba3976683438)
* docs: deprecate "client lanman auth"Andrew Bartlett2020-08-241-0/+9
| | | | | | | | | | | This parameter is appicable only to SMBv1 and we are deprecating SMBv1 specific authentication options for possible removal. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit ac8e5ea22d9f9b16a79f519f69852b46ac798541)
* docs: deprecate "client use spnego"Andrew Bartlett2020-08-241-0/+8
| | | | | | | | | | | This parameter is appicable only to SMBv1 and we are deprecating SMBv1 specific authentication options for possible removal. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 1b85db57e53533ce14beb79f6d949a08f6ef9f91)
* docs: Deprecate NT4-like domains and SMBv1-only protocol optionsAndrew Bartlett2020-08-242-0/+17
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit c6aa710f8da9ef92b388f1c0c59b2dd3c602ad2d)
* selftest: Do not let deprecated option warnings muck this test upAndrew Bartlett2020-08-241-0/+4
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 9e212dd15e6c484d69f236f3c6d7186f0e6353b4)
* param: Allow tests to silence deprecation warningsAndrew Bartlett2020-08-242-5/+18
| | | | | | | | | | This helps make output sensitive tests more reliable. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit d14cc45c98a77fb8a6ac96181eec33f368b8dbd8)
* selftest: Add test for suppression of deprecation warningsAndrew Bartlett2020-08-242-0/+34
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14460 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit d3ff49f48507d8a64b9c4847f79d7939f647e6f0)
* util: Add cmocka unit test for directory_create_or_existsChristof Schmitt2020-08-193-0/+242
| | | | | | | | | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14166 Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Sun Aug 16 07:06:59 UTC 2020 on sn-devel-184 (cherry picked from commit e89ec78e9a262a6e7bb9082323083eb5f1609655) Autobuild-User(v4-13-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-13-test): Wed Aug 19 09:56:13 UTC 2020 on sn-devel-184
* util: Allow symlinks in directory_create_or_existChristof Schmitt2020-08-191-2/+16
| | | | | | | | | | | | | Commit 9f60a77e0b updated the check to avoid having files or other objects instead of a directory. This missed the valid case that there might be a symlink to a directory. Updated the check accordingly to allow symlinks to directories. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14166 Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> (cherry picked from commit 672212cecdd7a7de40acdc81c56e2996ea82c090)
* VERSION: Bump version up to 4.13.0rc3...Karolin Seeger2020-08-141-2/+2
| | | | | | and re-enable GIT_SNAPSHOT. Signed-off-by: Karolin Seeger <kseeger@samba.org>
* VERSION: Disable GIT_SNAPSHOT for the 4.13.0rc2 release.samba-4.13.0rc2Karolin Seeger2020-08-141-1/+1
| | | | Signed-off-by: Karolin Seeger <kseeger@samba.org>
* WHATSNEW: Add release notes for Samba 4.13.0rc2.Karolin Seeger2020-08-141-2/+26
| | | | Signed-off-by: Karolin Seeger <kseeger@samba.org>
* Remove depracated "ldap ssl ads" smb.conf optionIsaac Boukris2020-08-124-29/+2
| | | | | | | Signed-off-by: Isaac Boukris <iboukris@samba.org> Autobuild-User(v4-13-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-13-test): Wed Aug 12 11:16:04 UTC 2020 on sn-devel-184
* ctdb-tests: Stop cat command failure from causing test failureMartin Schwenke2020-08-121-1/+1
| | | | | | | | | | | | | | In certain circumstance, which aren't obvious, cat(1) can fail when attempting to write a lot of data. This is due to something (probably write(2)) returning EAGAIN. Given that the -v option should only really be used for test debugging, ignore the failure instead of spending time debugging it. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14446 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 3ff8765d04c0fb950b7be4f9a049999aeb08223b)
* winbind: Fix lookuprids cache problemVolker Lendecke2020-08-102-2/+2
| | | | | | | | | | | | | | Bug: https://bugzilla.samba.org/show_bug.cgi?id=14435 Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Thu Jul 9 21:40:52 UTC 2020 on sn-devel-184 (cherry picked from commit cd4122d91e942ca465c03505d5e148117f505ba4) Autobuild-User(v4-13-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-13-test): Mon Aug 10 10:46:37 UTC 2020 on sn-devel-184
* winbind: Add test for lookuprids cache problemVolker Lendecke2020-08-103-0/+27
| | | | | | | | | | | | | | | | | | | | | When reading entries from gencache, wb_cache_rids_to_names() can return STATUS_SOME_UNMAPPED, which _wbint_LookupRids() does not handle correctly. This test enforces this situation by filling gencache with one wbinfo -R and then erasing the winbindd_cache.tdb. This forces winbind to enter the domain helper process, which will then read from gencache filled with the previous wbinfo -R. Without having the entries cached this does not happen because wb_cache_rids_to_names() via the do_query: path calls deep inside calls dcerpc_lsa_lookup_sids_noalloc(), which hides the STATUS_SOME_UNMAPPED that came in as lsa_LookupSids result value. Bug: https://bugzilla.samba.org/show_bug.cgi?id=14435 Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> (cherry picked from commit 04eafce653afcff517317d2b190acc4f0cbf4c61)
* torture3: Align integer typesVolker Lendecke2020-08-101-1/+2
| | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
* dbcheck: Allow a dangling forward link outside our known NCsAndrew Bartlett2020-08-102-1/+62
| | | | | | | | | | | | | If we do not have the NC of the target object we can not be really sure that the object is redundent and so we want to keep it for now and not (as happened until now) break the dbcheck run made during the replication stage of a "samba-tool domain backup rename". BUG: https://bugzilla.samba.org/show_bug.cgi?id=14450 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> (cherry picked from commit 05228c4e07013c0e6f78f1330b3b787271282ca8)
* ctdb-scripts: Use nfsconf as a last resort get nfsd thread countMartin Schwenke2020-08-102-0/+8
| | | | | | | | | | | | | | | | | | If nfsconf exists then use it as last resort to attempt to extract [nfsd]:threads from /etc/nfs.conf. Invocation of nfsconf requires "|| true" because this script uses "set -e". Add a stub that always fails to at least test this much. RN: Use nfsconf utility for variable values in CTDB NFS scripts BUG: https://bugzilla.samba.org/show_bug.cgi?id=14444 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> Autobuild-User(master): Amitay Isaacs <amitay@samba.org> Autobuild-Date(master): Mon Jul 27 07:06:58 UTC 2020 on sn-devel-184 (cherry picked from commit 642dc6ded6426ba2fbf3ac1e5cd71aae11ca245b)
* ctdb-scripts: Use nfsconf as a last resort to set NFS_HOSTNAMEMartin Schwenke2020-08-101-4/+17
| | | | | | | | | | If nfsconf exists then use it as last resort to attempt to extract [statd]:name from /etc/nfs.conf. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14444 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> (cherry picked from commit 334dd8cedda6a341e3b89c9adc8102ea5480e452)
* docs: Fix documentation for require_membership_of of pam_winbind.confAndreas Schneider2020-08-101-3/+6
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14358 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Isaac Boukris <iboukris@samba.org> (cherry picked from commit 71b7140fd0a33e7e8c5bf37c2897cea8224b3f01)
* docs: Fix documentation for require_membership_of of pam_winbindAndreas Schneider2020-08-101-3/+5
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=14358 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org> (cherry picked from commit 4c74db6978c682f8ba4e74a6ee8157cfcbb54971)