summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-09-29Make upgrade procedure more explicit.Michael Wood1-3/+5
Add in a compile step. Change the tar command to include the recommended dirs.
2010-09-28s3-waf: add AUTH_SCRIPT module to AUTH subsystem (which is build as sharedGünther Deschner1-0/+7
module by default). Guenther
2010-09-28s3-waf: add vfs_linux_xfs_sgid to the list of default shared modules.Günther Deschner1-1/+1
Guenther
2010-09-28s3: Attempt to fix bug 7518Volker Lendecke1-6/+6
If select returns -1, we can't rely on the fd sets. The current code might loop endlessly because when putting an invalid fd (the closed socket?) on the read set, a select implementation might choose not to touch it but directly return with EINVAL. Thus run_events will see the socket readable, which leads to a "return true", and thus a NT_STATUS_RETRY -> same game again. We should never get into this situation, but to me the logfiles given in bug 7518 do not reveal enough information to understand how this can happen.
2010-09-28s3: Increase the debuglevel for connection termination msgsVolker Lendecke1-2/+2
2010-09-28s3-waf: fix dependencies in most of our module subsystems.Günther Deschner4-23/+3
Guenther
2010-09-28s3-waf: add pam_smbpass.Günther Deschner3-6/+18
Guenther
2010-09-28s3-auth_util: make sure the system server info actually contains S-1-5-18.Günther Deschner1-0/+9
Without this, all security descriptor checks for the winreg spoolss backend fail and make our spoolss system in its current shape basically unusable. Andreas, please check. Guenther
2010-09-28s3-printing: remove unused old structs.Günther Deschner1-60/+0
Guenther
2010-09-28ldb: Fix path to alternative buildtools.Jelmer Vernooij1-1/+1
2010-09-28samba4: Don't update Makefile/configure from autogen.sh.Jelmer Vernooij2-2/+12
2010-09-28ldb/tevent: Fix detection of waf paths.Jelmer Vernooij4-4/+22
2010-09-28tevent: Remove make targets that are not relevant for tevent.Jelmer Vernooij1-8/+0
2010-09-28tevent: Don't update Makefile/configure files.Jelmer Vernooij2-2/+12
2010-09-28ldb: Update autogen-waf.sh to no longer overwrite existing files.Jelmer Vernooij2-2/+12
2010-09-28ldb: Remove samba-specific targets from Makefile.Jelmer Vernooij1-8/+0
2010-09-28ldb: Bump version because of addition of ldb_req_location.Jelmer Vernooij1-1/+1
2010-09-28format-subunit: Display number of failed tests even if there are noJelmer Vernooij1-1/+3
failed testsuites.
2010-09-28selftest: Abort early on SIGPIPE.Jelmer Vernooij2-0/+9
2010-09-28Add dedicated exception for immediate failure in filter-subunit, don't raise ↵Jelmer Vernooij2-4/+14
it on known exceptions.
2010-09-28s4-selftest: added a --fail-immediately option to s4 testAndrew Tridgell1-0/+7
this can be used to force an immediate test failure on the first failed test case. You can also use: make test FAIL_IMMEDIATELY=1
2010-09-28filter-subunit: added a --fail-immediately optionAndrew Tridgell2-2/+11
2010-09-28s4-provision: fixed the authority response for our SOA recordAndrew Tridgell1-1/+1
some clients rely on this being the hostname, not the domain Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Tue Sep 28 06:39:19 UTC 2010 on sn-devel-104
2010-09-27s4-dns: implemented RODC DNS update in dns update taskAndrew Tridgell1-0/+199
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-09-27s4-netlogon: added RODC DNS update call fwded to dnsupdate taskAndrew Tridgell2-4/+100
when we get a netlogon RODC DNS update, we send it to the dnsupdate task
2010-09-27s4-dns: added --update-list option to samba_dnsupdateAndrew Tridgell1-8/+14
this allows us to use it for RODC netlogon updates
2010-09-27pidl: added ifdef guards around ndr headersAndrew Tridgell1-1/+16
this prevents us parsing the leading headers needlessly
2010-09-27s4-kdc: added ifdef guards in kdc.hAndrew Tridgell1-0/+5
this prevents too much recursion in the compiler preprocessor
2010-09-27s4-ldb: removed an unused variableAndrew Tridgell1-1/+0
2010-09-27s4-kcc: fixed a incorrect context to kcctpl_get_all_bridgehead_dcsAndrew Tridgell1-1/+1
2010-09-27s4-dsdb: added samdb_find_site_for_computer() and ↵Andrew Tridgell1-0/+57
samdb_find_ntdsguid_for_computer() these will be used by the new RODC dns update code Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-09-27s4-auth: removed unused variable dom_sidAndrew Tridgell1-1/+1
2010-09-28s3: Lift smbd_messaging_context() from open_sockets_smbd()Volker Lendecke1-16/+14
2010-09-28s3: Remove two calls to procid_self()Volker Lendecke1-2/+4
2010-09-28s3: Remove talloc_autofree_context() from myhostname()Volker Lendecke1-3/+1
No destructor needed, so we can as well use the NULL context
2010-09-28s3: Remove some remaining files.c globals to sconnVolker Lendecke3-53/+49
2010-09-28s3: Remove talloc_autofree_context() from files.cVolker Lendecke3-7/+10
2010-09-28s3: Lift smbd_server_conn from file_find_fdVolker Lendecke4-7/+9
2010-09-28s3: Remove smbd_server_conn from file_fspVolker Lendecke1-1/+1
2010-09-28s3: Slightly simplify file_fnumVolker Lendecke1-2/+15
req==NULL should never happen, see the comment
2010-09-28s3: Remove smbd_server_conn from file_sync_allVolker Lendecke1-1/+1
2010-09-28s3: Remove smbd_server_conn from file_find_subpathVolker Lendecke1-1/+1
2010-09-28s3: Lift smbd_server_conn from file_find_di_firstVolker Lendecke6-10/+15
2010-09-28s3: Lift smbd_server_conn from file_find_difVolker Lendecke5-7/+9
2010-09-28s3: Remove smbd_server_conn from files_forallVolker Lendecke4-9/+12
2010-09-28s3: Remove smbd_server_conn from file_close_userVolker Lendecke3-4/+4
2010-09-28s3: Remove smbd_server_conn from file_close_pidVolker Lendecke3-4/+6
2010-09-28s3: Remove smbd_server_conn from file_close_connVolker Lendecke1-1/+1
2010-09-28s3: Remove smbd_server_conn from file_new and file_freeVolker Lendecke1-2/+2
2010-09-28s3: Lift smbd_server_conn from file_fnumVolker Lendecke1-4/+5