summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-01-18packaging/RHEL-CTDB: add the smbta-util manpageMichael Adam1-0/+1
2011-01-18packaging/RHEL-CTDB: add the pam_winbind.conf manpageMichael Adam1-0/+1
2011-01-18packaging/RHEL-CTDB: do not use an external docs tarball but build the manpagesMichael Adam2-15/+9
2011-01-18packaging/RHEL-CTDB: untangle the various %doc entries to single linesMichael Adam1-3/+10
2011-01-18docs: Remove template "itemizedlist/listitem" from man.xslMichael Adam1-60/+0
This seems to have been basically taken from the manpages/lists.xls from the docbook-xsl stylesheets. But it references a variable list-indent that older versions of docbook-xsl (e.g. 1.69) do not provide. This makes the manpage build break on older systems. Removing the definition lets the build succeed, using the system-definition of the itemizedlist/listitem. The diff between the docbook's (version 1.75.1) definition of itemizedlist/listitem and the definition in our man.xls is this: -- with this patch -- without this patch @@ -53,5 +53,7 @@ <!-- * seems to require the extra space. --> <xsl:call-template name="roff-if-end"/> <xsl:apply-templates/> - <xsl:text>.RE&#10;</xsl:text> + <xsl:if test=" following-sibling::listitem"> + <xsl:text>&#10;.RE&#10;</xsl:text> + </xsl:if> </xsl:template> I.e. the version of man.xsl made insertion if ".RE" conditional. I hope this does not break anything severely. The diff for e.g. the resulting winbindd.8 manpage is this: --- with this patch +++ witout this patch: @@ -375,7 +375,6 @@ \m[blue]\fBwinbind: rpc only\fR\m[] Setting this parameter forces winbindd to use RPC instead of LDAP to retrieve information from Domain Controllers\&. -.RE .SH "EXAMPLE SETUP" .PP To setup winbindd for user and group lookups plus authentication from a domain controller use something like the following setup\&. This was tested on an early Red Hat Linux box\&. Cheers
2011-01-18s4-gensec Extend python bindings for GENSEC and the associated testAndrew Bartlett3-28/+275
This now tests a real GENSEC exchange, including wrap and unwrap, using GSSAPI. Therefore, it now needs to access a KDC. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Jan 18 11:41:26 CET 2011 on sn-devel-104
2011-01-18s4-auth Extend python bindings to allow ldb and message to be specifiedAndrew Bartlett3-11/+61
This will allow for some more tokenGroups tests in future. Andrew Bartlett
2011-01-18s4-pygensec Fix indentation of py_gensec_start_mech_by_name()Andrew Bartlett1-11/+11
2011-01-18s4-torture Remove unused temp dirs from the RPC-PAC test.Andrew Bartlett1-9/+0
The code previously required the creation of a messaging context, but this isn't done any more, so we don't need the tmp dir to put it in. Andrew Bartlett
2011-01-18s4-pyldb Fix tp_basicsize for PyLdbDnAndrew Bartlett1-1/+1
This wasn't actually causing problems before, as the structures were the same size. Andrew Bartlett
2011-01-18s4-pygensec Add bindings for server_start() and update()Andrew Bartlett1-4/+96
2011-01-18s4-pyauth Add bindings for auth_context_create() as AuthContext()Andrew Bartlett2-1/+81
2011-01-18s4-pyauth Use py_talloc_get_type() for greater talloc binding safetyAndrew Bartlett2-12/+15
This does a talloc check of the returned pointer before casting it. Andrew Bartlett
2011-01-18s4-gensec Don't steal the auth_context, reference it.Andrew Bartlett2-6/+17
We don't want to steal this pointer away from the caller if it's been set up from python. Andrew Bartlett
2011-01-18pidl:wscript: don't warn about pidl gammar file changes for nowStefan Metzmacher1-2/+4
We may add some logic that uses git diff HEAD to detect this changes in developer mode later again. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Jan 18 08:10:06 CET 2011 on sn-devel-104
2011-01-18s4-ldb_ldif: Take into account LDB_FLG_SHOW_BINARYKamen Mazdrashki1-1/+4
when user requires binary data to be displayed using samba user-friendly ldif handlers Found using following test search: bin/ldbsearch -H st/dc/private/sam.ldb -b "CN=Deleted Objects,DC=samba,DC=example,DC=com" \ "(objectGUID=97b52eac-6d89-434d-b935-1e5f2e086ffc)" replPropertyMetaData --show-deleted --show-binary Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Tue Jan 18 00:40:01 CET 2011 on sn-devel-104
2011-01-18s4-ldb_ldif: Don't check for LDB_FLG_SHOW_BINARY in ldb_should_b64_encodeKamen Mazdrashki1-4/+0
LDB_FLG_SHOW_BINARY is data representation flag and should not modify behavior of data checking functions. This lead to a bug in lib/ldb/ldb_tdb/ldb_index.c as ltdb_index_key() function relies on ldb_should_b64_encode function to determine how to process index keys. Found using following test search: bin/ldbsearch -H st/dc/private/sam.ldb -b "CN=Deleted Objects,DC=samba,DC=example,DC=com" \ "(objectGUID=97b52eac-6d89-434d-b935-1e5f2e086ffc)" replPropertyMetaData --show-deleted --show-binary
2011-01-17s4-provision: Fixed owner/group for hard-coded Sites descriptor.Nadezhda Ivanova1-3/+1
We must not specify explicitly owner and group. As there is a difference between WIN_2003 and WIN_2008, we should let descriptor module compute the correct default ones. Also removed inherited ACEs, they are ignored during SD creation anyway. Autobuild-User: Nadezhda Ivanova <nivanova@samba.org> Autobuild-Date: Mon Jan 17 18:23:24 CET 2011 on sn-devel-104
2011-01-17s4-tools: Fixed a bug in ldapcmp - DACL was not retrieved correctly if the ↵Nadezhda Ivanova1-1/+4
object had no SACL. --Pair-Programmed-With: Zahari Zahariev
2011-01-17s3-rpc_client: Fixed status check of dcerpc_lsa_lookup_sids_noalloc.Andreas Schneider1-1/+1
Autobuild-User: Andreas Schneider <asn@samba.org> Autobuild-Date: Mon Jan 17 17:35:50 CET 2011 on sn-devel-104
2011-01-17s3-rpc_client: Fixed return values of dcerpc_lsa_lookup_sids_generic.Andreas Schneider1-4/+4
2011-01-17s3-auth: Fixed account lockout check.Andreas Schneider1-1/+1
2011-01-17s3: Make sure we call wbcAuthenticateUserEx correctlyVolker Lendecke2-8/+29
There are cases where we fill in params.password.response.lm_data with non-NULL where params.password.response.lm_length is 0. wbcAuthenticateUserEx does not like that. I haven't been able to reproduce this with smbclient yet, I've seen it with a proprietary smb client implementation. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Jan 17 16:30:11 CET 2011 on sn-devel-104
2011-01-17s4-tools: Added a --sort-aces option to ldapcmpNadezhda Ivanova1-6/+12
This option sorts the ACE lists during SD comparison in collision view to make it easier to determine of a difference is only in ACE order, and if not, where do differences start. Autobuild-User: Nadezhda Ivanova <nivanova@samba.org> Autobuild-Date: Mon Jan 17 14:09:09 CET 2011 on sn-devel-104
2011-01-17s3:build: don't use librpc/gen_ndr/cli_echo.[ch] anymoreStefan Metzmacher2-8/+3
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Jan 17 09:34:12 CET 2011 on sn-devel-104
2011-01-17s3:torture: use dcerpc_echo_X() functionsStefan Metzmacher1-4/+6
metze
2011-01-17s3:rpcclient: use dcerpc_echo_X() functionsStefan Metzmacher1-30/+37
metze
2011-01-17s3: Avoid a few calls to cli_errstrVolker Lendecke2-9/+13
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Jan 17 08:47:25 CET 2011 on sn-devel-104
2011-01-17s3: Remove some unused codeVolker Lendecke2-107/+0
2011-01-17s3: Convert cli_lock64 to cli_smbVolker Lendecke1-34/+24
2011-01-17s3: Convert cli_lock to use cli_locktypeVolker Lendecke1-46/+7
2011-01-17s3: Convert cli_locktype to cli_smbVolker Lendecke1-32/+22
2011-01-17s3: Make passing up "result_parent" from cli_smb optionalVolker Lendecke2-3/+2
2011-01-17s3: Remove unused cli_send_keepaliveVolker Lendecke2-20/+0
2011-01-17s3: Remove unused cli_send/receive_transVolker Lendecke2-340/+0
2011-01-17s3: Convert try_trans2 to cli_transVolker Lendecke1-28/+28
2011-01-17s3: Convert cli_api to cli_transVolker Lendecke1-11/+48
2011-01-17s3: Make cli_setpathinfo_basic use cli_setpathinfoVolker Lendecke3-77/+20
2011-01-17s3: Add cli_setpathinfoVolker Lendecke2-0/+40
2011-01-17s3: Rename cli_setpathinfo->cli_setpathinfo_basicVolker Lendecke3-18/+18
2011-01-17s3: Remove unused cli_send/receive_nt_transVolker Lendecke2-350/+0
2011-01-17s3: Convert try_nttrans to cli_transVolker Lendecke1-26/+25
2011-01-17s3: Move dump_ntquota* to smbcquotas.cVolker Lendecke3-77/+99
2011-01-17s3: Convert cli_set_fs_quota_info to cli_transVolker Lendecke3-37/+31
2011-01-17s3: Convert cli_get_fs_quota_info to cli_transVolker Lendecke3-47/+49
2011-01-17s3: Convert cli_list_user_quota to cli_transVolker Lendecke3-64/+54
2011-01-17s3: Convert cli_set_user_quota to cli_transVolker Lendecke3-38/+30
2011-01-17s3: Convert cli_get_user_quota to cli_transVolker Lendecke3-52/+54
2011-01-17s3: Fix some nonempty blank linesVolker Lendecke4-14/+12
2011-01-17s3: Fix a C++ warningVolker Lendecke1-1/+1