Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-09-12 | WHATSNEW: prepare release notes for 4.0.0rc1 | Michael Adam | 1 | -63/+42 | |
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | build:dist: call source3/autogen.sh and packaged generated files | Michael Adam | 1 | -0/+7 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | build:dist: call build-manpages-nogit for make dist and package generated files | Michael Adam | 1 | -0/+3 | |
so that we always have generated manpages under docs/manpages in the release tarball Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | build:dist: extend meaning of DIST_FILES to also recurse into directories | Michael Adam | 1 | -2/+16 | |
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | build:dist: make use of file / distfile more obvious in handling of ↵ | Michael Adam | 1 | -5/+2 | |
DIST_FILES in "make dist" Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | build:dist: for snapshot builds, call DIST_DIRS with extend=True | Michael Adam | 1 | -1/+1 | |
to allow the distversion file to be an addition to the list Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | build:dist: extend samba_dist.DIST_FILES() to take optional parameter ↵ | Michael Adam | 1 | -1/+3 | |
extend(=False) This allows to do multpile DIST_FILES() calls that will extend the list rather than only setting it initially. Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | build:waf dist: factor out function to add list of files to the tarball | Michael Adam | 1 | -22/+29 | |
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | s3:build: rewrite autogen.sh to be called from any directory | Michael Adam | 1 | -5/+20 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | release-scripts: run build-manpages-nogit with bash | Michael Adam | 1 | -1/+1 | |
On debian/ubuntu, the "dash" which is sh, does not provide pushd/popd... Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | release-scripts: run build-manpages-git with bash | Michael Adam | 1 | -1/+1 | |
On debian/ubuntu, the "dash" which is sh, does not provide pushd/popd... Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | release-scripts: let build-manpages-nogit store generated docs under ./bin/docs | Michael Adam | 1 | -1/+1 | |
not under ./docs Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | release-scripts: let build-manpages-git store generated docs under bin/docs/ | Michael Adam | 1 | -1/+1 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | In vfs modules, don't use 'conn->origpath' when we really mean 'conn->cwd'. | Jeremy Allison | 4 | -10/+10 | |
This allows VFS modules to work even when we've changed directory under the connect path in order to do root-safe calls. Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Wed Sep 12 23:45:23 CEST 2012 on sn-devel-104 | |||||
2012-09-12 | Move cached cwd onto conn struct. | Jeremy Allison | 3 | -1/+17 | |
This enables us to make VFS modules safe for use in root called code when we've changed directory under conn->connectpath. | |||||
2012-09-12 | Remove ancient "optimization" global LastDir. | Jeremy Allison | 3 | -18/+3 | |
2012-09-12 | Avoid overriding default ccache for ads operations. | Simo Sorce | 8 | -14/+102 | |
Avoid overriding default ccache for ads operations. Nowadays various samba components may need to use GSSAPI and a default cred cache to perform their tasks. This code was completely overriding the whole process default ccache name, thus altering the current credentials and sometimes hijacking them (or getting preemptively hijaked). By using gss_krb5_import_cred we can instead use a private ccache (necessary sometimes to use a different set of credentials fromt he default cifs/fqdn@realm one, for example when contacting foreign DCs using trust credentials) that does not affect the rest of the process. For the kerberos versions which don't have gss_krb5_import_cred we fallback to temp override of KRB5CCNAME and gss_acquire_cred. Signed-off-by: Alexander Bokovoy <ab@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> Autobuild-User(master): Alexander Bokovoy <ab@samba.org> Autobuild-Date(master): Wed Sep 12 21:18:09 CEST 2012 on sn-devel-104 | |||||
2012-09-12 | selftest: let provision_plugin_s4_dc use SMB3 | Stefan Metzmacher | 1 | -1/+1 | |
metze Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Wed Sep 12 18:30:48 CEST 2012 on sn-devel-104 | |||||
2012-09-12 | wintest: Fix --use-ntvfs handling | Andrew Bartlett | 1 | -1/+3 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | wintest: Rework support for the internal DNS server | Andrew Bartlett | 3 | -38/+54 | |
We still have to run BIND, the change is if BIND is run to support our own zone, or if we forward to as well as to windows. This also adapts to the new defaults. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | s4 provision: Ask for the dns forwarder IP address during interactive provision | Kai Blin | 2 | -10/+50 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | dns_server: Remove parameter 'dns recursive queries' and base this on 'dns ↵ | Andrew Bartlett | 4 | -12/+3 | |
forwarder' This simplifies a very common configuration. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | wintest: try to fix settings for the internal dns server | Stefan Metzmacher | 1 | -3/+3 | |
metze | |||||
2012-09-12 | lib/param: change the default for 'allow dns updates' to 'secure only' | Stefan Metzmacher | 3 | -4/+4 | |
metze | |||||
2012-09-12 | lib/param: add some more alias for 'allow dns updates' options. | Stefan Metzmacher | 1 | -0/+12 | |
metze | |||||
2012-09-12 | WHATSNEW.txt: Update DNS server description | Kai Blin | 1 | -7/+17 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-09-12 | s4:dns_server: remove wrong and unused dsdb_check_access_on_dn() check | Stefan Metzmacher | 1 | -16/+0 | |
metze | |||||
2012-09-12 | dns_server: Attempt to SET and UNSET the sessionInfo to match the incoming user | Andrew Bartlett | 1 | -2/+24 | |
This avoids re-opening the DB as the correct user, but applies all the right ACLs and resulting owner. This needs a bit more testing... Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Kai Blin <kai@samba.org> | |||||
2012-09-12 | s4:samba_upgradedns: delete dns-HOSTNAME account if using the internal dns ↵ | Stefan Metzmacher | 1 | -0/+28 | |
server metze | |||||
2012-09-12 | selftest:Samba4: don't provision with BIND9_DLZ | Stefan Metzmacher | 1 | -21/+34 | |
metze | |||||
2012-09-12 | s4:upgradehelpers.py: don't require a dns-$HOSTNAME account | Stefan Metzmacher | 1 | -3/+0 | |
metze | |||||
2012-09-12 | s4:provision: don't add the dns-HOSTNAME account if we use the internal dns ↵ | Stefan Metzmacher | 1 | -6/+10 | |
server metze | |||||
2012-09-12 | loadparm: dns is now a default server service | Kai Blin | 1 | -1/+1 | |
2012-09-12 | s4 dns: use the internal DNS server per default | Kai Blin | 4 | -21/+21 | |
2012-09-12 | s4 dns: Add libaddns-based simple tests | Kai Blin | 4 | -3/+203 | |
2012-09-12 | s4 dns: Run python tests in fl2003dc env | Kai Blin | 3 | -22/+23 | |
2012-09-12 | s4 dns: Improve logging of delegated dns updates | Kai Blin | 1 | -1/+1 | |
2012-09-12 | s4:selftest: run thet dlz_bind9. tests in the chgdcpass env | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2012-09-12 | s3: remove unneeded noquota.c file | Björn Jacke | 1 | -38/+0 | |
Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Wed Sep 12 16:50:50 CEST 2012 on sn-devel-104 | |||||
2012-09-12 | s3-rap: Open printers with the right access mask. | Andreas Schneider | 1 | -3/+3 | |
Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Wed Sep 12 14:05:42 CEST 2012 on sn-devel-104 | |||||
2012-09-12 | docs: Build manpages correctly. | Andreas Schneider | 1 | -1/+1 | |
2012-09-12 | wafsamba: Add a SAMBAMANPAGES function. | Andreas Schneider | 1 | -1/+15 | |
2012-09-12 | docs: Bump version up to 4.0. | Andreas Schneider | 8 | -10/+8 | |
2012-09-12 | docs: Fix typo. | Karolin Seeger | 1 | -1/+1 | |
Karolin Autobuild-User(master): Karolin Seeger <kseeger@samba.org> Autobuild-Date(master): Wed Sep 12 12:21:00 CEST 2012 on sn-devel-104 | |||||
2012-09-12 | lib/krb5_wrap: when deleting default realm, pass char*, not char** | Alexander Bokovoy | 1 | -1/+1 | |
Autobuild-User(master): Alexander Bokovoy <ab@samba.org> Autobuild-Date(master): Wed Sep 12 10:33:37 CEST 2012 on sn-devel-104 | |||||
2012-09-12 | s3-pdb: filter out more symbols only used in ldapsam internals | Alexander Bokovoy | 2 | -2/+1 | |
2012-09-12 | WHATSNEW: provision and updateprovision have new names | Stefan Metzmacher | 1 | -0/+6 | |
metze Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Wed Sep 12 08:48:16 CEST 2012 on sn-devel-104 | |||||
2012-09-12 | s4:scripting: rename upgradeprovision -> samba_upgradeprovision | Stefan Metzmacher | 4 | -4/+4 | |
metze | |||||
2012-09-12 | s4:setup: remove standalone 'provision' | Stefan Metzmacher | 2 | -279/+0 | |
metze | |||||
2012-09-12 | smbd: Add extra VFS hooks to get the posix ACL as a blob | Andrew Bartlett | 8 | -0/+235 | |
This will allow us to hash this, rather than the NT ACL it maps to. This will in turn allow us to know if the NT ACL is valid even if we have to change the mapping code. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Wed Sep 12 07:06:01 CEST 2012 on sn-devel-104 |