summaryrefslogtreecommitdiffstats
path: root/source4/scripting
Commit message (Collapse)AuthorAgeFilesLines
...
* samba-tool delegation: Use self.outf, simplify some code.Jelmer Vernooij2011-10-131-14/+8
|
* samba.getopt: Refactor parsing of --kerberos argument into separate function.Jelmer Vernooij2011-10-131-13/+16
|
* samba-tools/testparm: Add really basic unit test, demonstrating how to write ↵Jelmer Vernooij2011-10-131-0/+29
| | | | | | | unit tests for samba-tool in Python. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Thu Oct 13 01:56:20 CEST 2011 on sn-devel-104
* netcmd: Add Command.get_logger() method.Jelmer Vernooij2011-10-133-5/+8
|
* netcmd: Add errf stream to command instances.Jelmer Vernooij2011-10-132-8/+9
|
* samba-tool/testparm: Fix traceback when checking client name/ip against ↵Jelmer Vernooij2011-10-131-2/+2
| | | | hosts allowed.
* samba-tool/testparm: Fix handling of command-line options.Jelmer Vernooij2011-10-131-26/+29
|
* samba.upgrade: Use list comprehension.Jelmer Vernooij2011-10-121-4/+4
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Wed Oct 12 22:44:40 CEST 2011 on sn-devel-104
* samba.getopt: Allow --kerberos=auto, and fix exception name if an unknownJelmer Vernooij2011-10-121-1/+4
| | | | | | | value is specified. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Wed Oct 12 02:12:21 CEST 2011 on sn-devel-104
* s4-s3-upgrade: Allow import (just without a uid mapping) where getpwnam failsAndrew Bartlett2011-10-111-1/+1
| | | | | | This allows the tests to pass on systems without a jelmer user :-) Andrew Bartlett
* netcmd/domain: Remove unused imports.Jelmer Vernooij2011-10-081-2/+2
|
* netcmd: Avoid catching all exceptions, avoid using ';' at the end of lines.Jelmer Vernooij2011-10-081-9/+8
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Oct 8 15:46:46 CEST 2011 on sn-devel-104
* upgrade: Avoid catching all exceptions, just catch the ones we care about.Jelmer Vernooij2011-10-081-11/+9
|
* s4:findprovisionusnranges - the default python path is detected over "env"Matthias Dieter Wallnöfer2011-10-081-1/+1
| | | | | | | Reviewed-by: Jelmer Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sat Oct 8 13:06:20 CEST 2011 on sn-devel-104
* s4:dbchecker: make use of local_oid controls for dsdb.DSDB_CONTROL_DBCHECKStefan Metzmacher2011-10-071-1/+1
| | | | metze
* samba-tool: add support for fixing broken backlinks in dbcheckAndrew Tridgell2011-10-061-20/+32
| | | | | | | | | this allows dangling backlinks to be removed Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Thu Oct 6 07:08:35 CEST 2011 on sn-devel-104
* s4-subdomain: create trust record with forest root DCAndrew Tridgell2011-10-041-7/+33
| | | | | | | | | | when we create a sub-subdomain we need to use the forest naming master to setup the partition changes for the new subdomain. We also need to setup the trust with the forest root, as that allows us to create the needed _msdcs DNS entries in the forest Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Tue Oct 4 07:40:59 CEST 2011 on sn-devel-104
* s4-join: enable cleanup on failed joinAndrew Tridgell2011-10-041-1/+1
| | | | if a join fails, then cleanup the old records
* dns: added example python script for dnsserver protocolAndrew Tridgell2011-10-041-0/+89
|
* samba-tool: cope with GC compares in ldapcmpAndrew Tridgell2011-10-041-3/+5
| | | | the two base DNs do not need to match when doing GC replica compares
* samba-tool: added --full-sync and --sync-all options to samba-tool drs replicateAndrew Tridgell2011-10-041-3/+9
|
* s4-dbchecker: fixed handling of DSDB DNs in dbcheckAndrew Tridgell2011-10-041-1/+1
| | | | | we need to use the original value, as ldb.Dn() can't parse a DSDB binary DN
* s4-dbcheck: fixed transaction nesting in dbcheckAndrew Tridgell2011-09-221-2/+6
| | | | | | | | | ensure we don't cancel a transaction we didn't start Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Thu Sep 22 03:39:59 CEST 2011 on sn-devel-104
* samba-tool: use show_recycled in dbcheckerAndrew Tridgell2011-09-221-13/+16
| | | | | we need to use show_recycled instead of show_deleted in dbchecker to allow us to see recycled objects
* s4-dns: started adding support for auto-creation of NS glue recordAndrew Tridgell2011-09-221-1/+37
| | | | | when we create a new subdomain we need to create a NS glue record in the parent domain pointing at our subdomain
* pyldb: fixed places where we try to concatenate a Dn with a stringAndrew Tridgell2011-09-192-6/+6
| | | | you need to either use str(dn) or use %s in a format string
* s4-provision: use get_config_basedn() in DNS setupAndrew Tridgell2011-09-191-1/+1
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* samba-tool: use get_config_basedn() to get configuration NC DNAndrew Tridgell2011-09-192-9/+7
| | | | | | this allows these commands to work for subdomains Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-provision Add initial support for joining as a new subdomainAndrew Bartlett2011-09-192-133/+154
| | | | | | | | To do this we need to reorganise a lot of the provision code, so that we can create the framework for the inbound replicaton of the config and schema partitions and then add in the new subdomain locally. Andrew Bartlett
* s4:upgrade_from_s3 - old s3 versions < 3.4.x don't have a "state directory" ↵Matthias Dieter Wallnöfer2011-09-161-1/+5
| | | | | | | | | param Hence the "lock directory" path has to be used instead. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Sep 16 00:07:30 CEST 2011 on sn-devel-104
* s4-s3-upgrade Improve samba-tool domain samba3upgrade behaviourAndrew Bartlett2011-09-132-13/+13
| | | | | | | | | | | | | The --realm argument is again optional (the previous code would take the default from the default smb.conf, not the one specified) and --targetdir is now a named argument much like it is to provision. We now test the --testparm option to ensure it behaves the way we expect. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Sep 13 16:30:31 CEST 2011 on sn-devel-104
* s4:upgrade_from_s3 - restore "get_testparm_var" methodMatthias Dieter Wallnöfer2011-09-131-1/+4
| | | | | | This has accidentally been removed by commit 8268c2d4e231b05b439bc70331b75342b35daa4e. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4-subdomain: match windows form for trustAuthInOutBlobAndrew Tridgell2011-09-131-11/+3
| | | | | | Windows does not put a version element in the array Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-subdomain: fixed domain guid choice for subdomain joinAndrew Tridgell2011-09-131-4/+13
| | | | | | | We need to use the domain GUID that the server choose in the ncName link Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-subdomain: don't delete account DN not created in subdomain joinAndrew Tridgell2011-09-131-5/+8
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-subdomain: use a password length of 128Andrew Tridgell2011-09-131-1/+1
| | | | | | | | windows seems to use a fixed size for this password. It is possible that windows servers can only handle one size, given we have observed some strange behaviour from the windows kdc when we setup trusts Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-join: fixed non-subdomain joinAndrew Tridgell2011-09-131-0/+2
| | | | | | these two vars need to be initialised for general join Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-subdomain: fixed invocationID and hostIPs in subdomain joinAndrew Tridgell2011-09-132-14/+18
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-subdomain more work on sub-domain joinAndrew Bartlett2011-09-131-49/+267
| | | | | | | | | | | we can now create a subdomain of an existing windows domain using: samba-tool domain join sub.domain.dns.name subdomain The ordering of the creation of the key records is quite tricky, especially for the NTDSDSA object Pair-Programmed-With: Andrew Tridgell <tridge@samba.org>
* s4: add createtrust tool for testingAndrew Bartlett2011-09-131-0/+137
|
* s4-join Add a partitions DN when we join a subdomainAndrew Bartlett2011-09-131-0/+16
|
* s4-provision Perform 'modify' operations as systemAndrew Bartlett2011-09-131-5/+13
| | | | | | | | | | We need this so that we can modify the cn=configuration partition when we are setting up a new subdomain. The serverReference on our ${SERVERDN} is in that partition, and without this change creating a new subdomain fails due to ACLs. Andrew Bartlett
* s4-join supply the NTDS GUID to the provisionAndrew Bartlett2011-09-131-1/+1
| | | | | | | | | Unlike other join operations, the creation of a subdomain makes local changes to the DB, so we need to pass in the NTDS GUID to ensure the one set on the object created in the parent domain is the one that is used. Andrew Bartlett
* s4-provision Split addition of users and well known principalsAndrew Bartlett2011-09-131-6/+11
| | | | | | | If we are provisioning a subdomain, then these are already in cn=configuration. Andrew Bartlett
* s4-provision Add initial support for joining as a new subdomainAndrew Bartlett2011-09-133-277/+406
| | | | | | | | To do this we need to reorganise a lot of the provision code, so that we can create the framework for the inbound replicaton of the config and schema partitions and then add in the new subdomain locally. Andrew Bartlett
* s4-python: Fix some formatting issues.Jelmer Vernooij2011-09-135-37/+56
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Tue Sep 13 03:51:13 CEST 2011 on sn-devel-104
* s4-python: Consistently use spaces rather than tabs, fix headers in several ↵Jelmer Vernooij2011-09-1325-79/+150
| | | | places.
* Add samba.tests.source, which checks Python files for copyright lines, ↵Jelmer Vernooij2011-09-131-0/+168
| | | | license headers and invalid characters (dos newlines, tabs).
* testparm.py: Use standard formatting of header.Jelmer Vernooij2011-09-131-10/+10
|
* group.py: Remove tab characters.Jelmer Vernooij2011-09-131-2/+2
|