Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-06-26 | s4:provision: add --next-rid option | Stefan Metzmacher | 1 | -1/+3 | |
Make it possible to provision a domain with a given next rid counter. This will be useful for upgrades, where we want to import users with already given SIDs. metze | |||||
2010-06-20 | selftest: Use scripted testparm. | Jelmer Vernooij | 1 | -1/+2 | |
2010-06-16 | s4:provision Add import for DS_DOMAIN_FUNCTION_2000 | Andrew Bartlett | 1 | -0/+1 | |
2010-06-16 | s4:provision Allow functional level 2000 to be chosen | Andrew Bartlett | 1 | -1/+3 | |
2010-06-13 | Friendlier message. | Jelmer Vernooij | 1 | -2/+2 | |
2010-06-13 | s4-python: Start using standard python logging infrastructure rather | Jelmer Vernooij | 1 | -8/+11 | |
than simple messaging callbacks. | |||||
2010-04-21 | s4-provision: cope with --realm being in getopt.py | Andrew Tridgell | 1 | -1/+2 | |
we still need to allow for interactive querying of the realm Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-04-08 | s4-python: More cleanups. | Jelmer Vernooij | 1 | -1/+2 | |
2010-04-08 | s4-python: Simplify code, improve formatting. | Jelmer Vernooij | 1 | -8/+5 | |
2010-04-04 | s4-python: Move dsdb constants to a separate python module. | Jelmer Vernooij | 1 | -2/+5 | |
2010-03-25 | python: use '#!/usr/bin/env python' to cope with varying install locations | Andrew Tridgell | 1 | -1/+1 | |
this should be much more portable | |||||
2010-03-18 | Fixed --ol-mmr-url helpline | Oliver Liebel | 1 | -1/+1 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-03-14 | Reintroduce "s4:provision Improve the handling of provision errors"" | Matthias Dieter Wallnöfer | 1 | -18/+23 | |
This mainly reverts commit f0bc02d74c16bc013e9fdab46ef271cf45873453. Jelmer pointed out a way how we can achieve the same error handling with an older syntax also on Python 2.4+. | |||||
2010-03-13 | Revert "s4:provision Improve the handling of provision errors" | Matthias Dieter Wallnöfer | 1 | -25/+18 | |
This reverts partially commit 027123199e13cc02ae4edadd8f0dd0f0660e1193. Andrew, this is not Python 2.4+ compatible | |||||
2010-03-11 | s4:provision Improve the handling of provision errors | Andrew Bartlett | 1 | -18/+25 | |
The backtraces were too confusing for our users, and didn't tell them what to do to fix the problem. By printing the string (rather than a backtrace), and including in the error what to do, and what file to remove, we give them a chance. Andrew Bartlett | |||||
2010-02-12 | s4-provision: fixed --function-level option to provision | Andrew Tridgell | 1 | -0/+1 | |
we need the DS_DOMAIN_* levels imported | |||||
2010-01-21 | provision: use message and do not display warning if the user choosed ↵ | Matthieu Patou | 1 | -3/+4 | |
delibarately posix:eadb | |||||
2010-01-21 | provision: introduce use-xattr parameter for defining where to store attributes | Matthieu Patou | 1 | -6/+21 | |
This option allow simple user (non root) to invoke provision without facing an error while insuring that ACL on shared files will always be set | |||||
2010-01-21 | s4: Set acls correctly on all sysvol and scripts shares | Matthieu Patou | 1 | -2/+7 | |
2010-01-21 | s4: regroup gpo modification in one function, set acl on files accordingly ↵ | Matthieu Patou | 1 | -1/+2 | |
with ACL in LDAP | |||||
2009-11-28 | s4:setup/provision - Rework | Matthias Dieter Wallnöfer | 1 | -5/+24 | |
- Revert change in "ask" - was previously correct - Readd accidentally removed checks for non-null realm and domainname - On interactive mode perform only one "ask" call per question - Inform the user about the unset administrator password | |||||
2009-11-27 | s4:setup/provision - make the interactive mode work again | Matthias Dieter Wallnöfer | 1 | -13/+3 | |
2009-11-02 | s4:provision Rework provision to always have a ProvisionBackend | Andrew Bartlett | 1 | -1/+1 | |
Rather than treat the LDAP backend as a special case, treat all backends the same, with different callbacks. Andrew Bartlett | |||||
2009-10-21 | s4:provison Allow the NTDS guid on the command line (for testing) | Andrew Bartlett | 1 | -0/+3 | |
This allows a blackbox test to confirm this can be set. Andrew Bartlett | |||||
2009-10-02 | s4:provision - Change the default forest/domain function level back to ↵ | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
Windows 2003 Native | |||||
2009-09-30 | s4:provision - Lets the user choose between the supported forest/domain ↵ | Matthias Dieter Wallnöfer | 1 | -8/+17 | |
function levels Adds a parameter "--function-level" which allows to specify the domain and forest function level. | |||||
2009-09-11 | s4:group policies - add the domain controller group policy | Matthias Dieter Wallnöfer | 1 | -2/+5 | |
This patches fixes the last difference between s4 and Windows Server regarding group policy objects: we hadn't the domain controller policy. - Adds the domain controller policy as it is found in the "original" AD - Adds also the right version number in the GPT.INI file for the domain group policy (was missing) | |||||
2009-08-17 | s4: Re-add --ldapadminpass as an option to provision | Andrew Bartlett | 1 | -0/+3 | |
This should make setting up LDAP servers more predictable. When not specified, it is random Andrew Bartlett | |||||
2009-08-17 | s4:provision Rework provision-backend into provision | Andrew Bartlett | 1 | -14/+21 | |
This removes a *lot* of duplicated code and the cause of much administrator frustration. We now handle starting and stopping the slapd (at least for the provision), and ensure that there is only one 'right' way to configure the OpenLDAP and Fedora DS backend We now run OpenLDAP in 'cn=config' mode for online configuration. To test what was the provision-backend code, a new --ldap-dryrun-mode option has been added to provision. It quits the provision just before it would start the LDAP binaries Andrew Bartlett | |||||
2009-07-19 | provision: Remove unused imports. | Jelmer Vernooij | 1 | -4/+0 | |
2009-02-11 | Use convenience function for finding setup_dir based on location of | Jelmer Vernooij | 1 | -2/+2 | |
python module. | |||||
2009-02-11 | --interactive doesn't take any argument. | Jelmer Vernooij | 1 | -1/+1 | |
2009-01-21 | Use script path to find the setup directory. | Jelmer Vernooij | 1 | -1/+1 | |
2009-01-19 | Make sure server_role gets initialized in backend provisioning code - | Jelmer Vernooij | 1 | -1/+1 | |
fixes test. | |||||
2009-01-19 | Don't give fatal python errors when guessing the realm | Andrew Bartlett | 1 | -2/+12 | |
2009-01-05 | Use fqdn rather than gethostname when guessing realm. | Jelmer Vernooij | 1 | -1/+1 | |
2008-12-21 | Move tests for ParamFile. | Jelmer Vernooij | 1 | -1/+1 | |
2008-12-21 | Fix various Python-related bugs. | Jelmer Vernooij | 1 | -1/+2 | |
2008-12-19 | Avoid use of parentheses in Python import statements, as it's not supported ↵ | Jelmer Vernooij | 1 | -3/+1 | |
by Python2.3. | |||||
2008-12-16 | s4/provision: Upper case default realm, use only first part of realm as ↵ | Jelmer Vernooij | 1 | -2/+2 | |
default domain name. | |||||
2008-12-11 | Add interactive flag to setup/provision (also the default when no arguments ↵ | Jelmer Vernooij | 1 | -2/+27 | |
are given). | |||||
2008-07-15 | Connect to the LDAP backend with SASL credentials. | Andrew Bartlett | 1 | -1/+3 | |
This reworks our LDAP backend code to move from anonymous access to a shared-secret SASL-protected connection. (SASL selects NTLM or DIGEST-MD5 on my system). To get this working, we must pre-populate the LDAP backend with a DN to store ths SASL secret on, and we use back-ldif for this. This gives us a reasonable basis to deploy a replicated OpenLDAP backend solution. Andrew Bartlett (This used to be commit cd0745253c4a9ec59a035e830e54d74a05b71aaa) | |||||
2008-05-21 | Move more modules inside of the samba package. | Jelmer Vernooij | 1 | -2/+2 | |
(This used to be commit 9b39e99f48266a54ed0b8890c2efde218b4b118a) | |||||
2008-05-11 | Set sys.path for running inside source tree. | Jelmer Vernooij | 1 | -1/+2 | |
(This used to be commit b507109bb676715f7d9616e13b0e19305e9c2559) | |||||
2008-05-11 | Use system python rather than smbpython. | Jelmer Vernooij | 1 | -0/+2 | |
(This used to be commit d3df51cd01e53383dcc05923d248db03bc6f62e9) | |||||
2008-04-14 | make the SMB2 negotiated read and write size settable in smb.conf | Andrew Tridgell | 1 | -0/+2 | |
parametic options: smb2:max read size = NNN smb2:max write size = NNN The defaults are 65536, which is what Vista sets, and what we previously set (This used to be commit 9e60164cae42b5dd95720e48301a2ac57e95482a) | |||||
2008-04-02 | Fix conflicts in setup/provision script. | Andrew Bartlett | 1 | -8/+0 | |
(This used to be commit 696b58f5dd8370b7ee0670c7a3e5db10234b41ff) | |||||
2008-04-02 | Fix merge of my host GUID removal and the IPv6 addition to provision | Andrew Bartlett | 1 | -1/+11 | |
Merge branch 'v4-0-ipv6' of git://git.id10ts.net/samba into 4-0-abartlet Andrew Bartlett (This used to be commit d3336684f084f984500dd0893dd01bcfc5be0ab1) | |||||
2008-04-01 | provision: Add support for IPv6 (bz #4593). | Andrew Kroeger | 1 | -2/+4 | |
(This used to be commit 8585a3c77d5dfe97bca3f08716fc06ac2819f578) | |||||
2008-04-02 | Remove references to setting the host GUID, as the repl_meta_data | Andrew Bartlett | 1 | -5/+3 | |
module prohibits it anyway. Andrew Bartlett (This used to be commit c5b287c056855892f30fbbf32efe7d65da31ce91) |