summaryrefslogtreecommitdiff
path: root/source4/scripting
AgeCommit message (Collapse)AuthorFilesLines
2008-04-02Install public header files again and include required prototypes.Jelmer Vernooij3-0/+3
(This used to be commit 47ffbbf67435904754469544390b67d34c958343)
2008-04-01Rename libsamba-config to libsamba-hostconfig.Jelmer Vernooij1-1/+1
(This used to be commit c46b7e90e347da76156ddcae4866adb88e9fec21)
2008-03-29Rework 'compleated' message in provision to be more useful.Andrew Bartlett1-7/+9
In particular, this should draw attention to accidential 'standalone' server provisions and therefore cause less frustration. Andrew Bartlett (This used to be commit e906ae041a2b589ffceff97b74f7c4b01386382a)
2008-03-28Fix and test python scripts and kerberosAndrew Bartlett2-3/+13
This fixes up the python credentials interface in a number of areas, with the aim of supporting '-k yes' as a command line option. (This enables the use of kerberos). As such, I've had to change the get_credentials call to take a loadparm context, so that the credentials can be initialised correctly. The test_kinit script has been modified to prove that this continues to work, as well as to provide greater code coverage of the kerberos paths. Andrew Bartlett (This used to be commit 727ef40c2b56910028ef3c1092b8eab1bfa6ce63)
2008-03-28Convert some more files to GPLv3.Andrew Kroeger11-11/+11
(This used to be commit ebe5e8399422eb7e2ff4deb546338823e2718907)
2008-03-28Make the setup/newuser and setup/setpassword scripts actually work...Andrew Bartlett1-16/+42
These need a testsuite, but this will come soon. Andrew Bartlett (This used to be commit fbcaa622bd1929399e32326349e96b6676a49b96)
2008-03-28Merge branch 'v4-0-local' of git://git.id10ts.net/samba into v4-0-testJelmer Vernooij2-2/+2
(This used to be commit b6c61bee649734f6000fbf3fe3736d8c82155ac9)
2008-03-28Don't specify what should be a default option in the generated smb.confAndrew Bartlett1-2/+2
Instead, sub in "", so that the default continued to come from the code. Andrew Bartlett (This used to be commit b1829da8f75175fcc569a3a9195f2358731055a9)
2008-03-27provision: Increase max NetBIOS name length from 13 to 15.Andrew Kroeger2-2/+2
Issue originally reported by user Julsa-FR on IRC. (This used to be commit ee9ad77009ef5e36655a49c41730a4a963ba9d43)
2008-03-27Remove define that appears to cause configure test breakage on Julien's machine.Jelmer Vernooij1-2/+0
(This used to be commit f47df5761571dd5c36789fb2e225a1125ca0e8f7)
2008-03-27provision: Initialize uninitialized variables if "targetdir" is notKai Blin1-1/+4
defined and there is no smb.conf file (This used to be commit 19c29f473883be0a17fa740de9feb226f347df4a)
2008-03-15Rework memberof handling in slapd.conf (used for OpenLDAP backend)Andrew Bartlett1-22/+19
Instead of using an include file, put the generated configurationd directly into slapd.conf. Andrew Bartlett (This used to be commit 95ac786136aebfe5ededeb3fb81cbd4e296e3988)
2008-03-14swig: regenerate _wrap.c filesStefan Metzmacher1-1/+1
metze (This used to be commit 08b41e10699c7bb8058ab0ab61f17a1bbfcc1ce4)
2008-03-13build: we don't rely on bash yet:-) '==' should be just '='Stefan Metzmacher1-1/+1
metze (This used to be commit 17997dd9bcd385fcf27646d832ad824cc2a0800a)
2008-03-13configure: when detecting python we should disable pyconfig.hStefan Metzmacher1-0/+2
This fixes the detection on HP-UX where the pyconfig.h contains bogus defines. metze (This used to be commit 9391f6f80461be2b214a881782aecf7df8a4aba3)
2008-03-13Rework to have member server 'domains' be CN=NETBIOSNAMEAndrew Bartlett1-0/+6
This reworks quite a few parts of our provision system to use CN=NETBIOSNAME as the domain for member servers. This makes it clear that these domains are not in the DNS structure, while complying with our own schema (found by OpenLDAP's schema validation). Andrew Bartlett (This used to be commit bda6a38b055fed2394e65cdc0b308a1442116402)
2008-03-13Update the provision scripts and selftest for LDAPAndrew Bartlett1-5/+7
This should allow us to provision onto an OpenLDAP backend again. Also ensure we always have a sysvol and netlogon share in the selftest environment. Andrew Bartlett (This used to be commit b2d9b03ba3434e76d4d476233a198728523d17f9)
2008-03-13Don't talloc_free() the UUID before we return.Andrew Bartlett1-1/+4
This error caused us to put a 0x80 byte at the end of GUID, which was only detected by OpenLDAP's schema checking. Andrew Bartlett (This used to be commit fd99b7719bcb503e2695b2cbad0230fa23a094ca)
2008-03-13Upgrade provision-backend to python.Andrew Bartlett1-210/+411
This required a large rework of the provision code, so as to move much of the 'guess' logic into subprocedures, rather than just inline in the provision code. Andrew Bartlett (This used to be commit a0754c2a857217ca831c2295b17255d8f38dfbc2)
2008-03-11Fix provision script to work without smb.conf location specified.Andrew Bartlett1-2/+3
Andrew Bartlett (This used to be commit b4da374a998caac18c288a0a6e3fcd2c50cbffa7)
2008-03-07Try to fix up part of the upgrade test.Andrew Bartlett2-12/+21
There are still problems with the upgrade test, but these are not related to the provision system. Andrew Bartlett (This used to be commit d331bc400fb138bc43be88d0ca8ab3bcd590d2cd)
2008-03-07Rework provision scripts for more testingAndrew Bartlett2-17/+17
This fixes up some issues with testdir (was not honoured) and increases test coverage. We now check all the major provision modes. In doing so, to make it possible to call from the multiple layers of 'sh', I have allowed 'dc' to alias 'domain controller' and 'member' to alias 'member server'. Fighting shell quoting in the test system was just too hard... Also fix upgrade.py Andrew Bartlett (This used to be commit 0923de12282b0e063dd73bc3e056dd5c3663c190)
2008-03-07Merge branch 'v4-0-test' of git://git.samba.org/samba into 4-0-localAndrew Bartlett1-76/+138
(This used to be commit a6997c333cdd68dfba8a069df448836ff487787f)
2008-03-07Start to rework provision for LDAP backendsAndrew Bartlett2-2/+16
This is the start of the rework of the provision script to handle an LDAP backend correctly. For example, we must not set the 'tdb modules' against an LDAP backend such as OpenLDAP that handles subtree renames. Andrew Bartlett (This used to be commit e462a107d3bafcc546ca4d53dcc8eb32e4280745)
2008-03-06Make Samba4 pass the NET-API-BECOMEDC test against Win2k3 (again).Andrew Bartlett1-76/+138
To make Samba4, using the python provision system, pass this test required some major rework. Untested code is broken code, and some of the refactoring for a seperate provision test (which also now passes) broke things. Similarly, the iconv work has compiled, but these codepaths have never been run (NULL pointer de-reference). In working to use a local, rather than global, loadparm context, and to support using a target directory, a few things needed to be reworked, particularly around path handling. Andrew Bartlett (This used to be commit 1169e8d7bee20477b0efbfea3534ac63c83fb3d6)
2008-03-03Fix failure to re-provision.Andrew Bartlett2-9/+21
Somewhere in the conversion from ejs we lost calling the 'delete partitions' code. However, we have to be careful not to wipe partitions when we are the second client connecting to an LDAP server. Andrew Bartlett (This used to be commit 272eb765b81e3eab216a07249334f9b7d20e530b)
2008-03-03Fix member server provisionDouglas VanLeuven1-1/+1
Can't add "member server" because the script aborts with null reference when no match on serverrole. This is fixed by checking for the keyword "member server". (This used to be commit 62536750ae06248a49c6b56c86d01b0062bb54f0)
2008-02-29Fix typos, avoid DEPEND_LIST from growing with empty elements.Jelmer Vernooij1-2/+1
(This used to be commit b30fd477ff0d97bb4de3c5301a6cdc47867451ee)
2008-02-29use gmake to handle .py file copies.Jelmer Vernooij1-0/+4
(This used to be commit d54421a9eeadbd76791917c5e3c460c897259ede)
2008-02-28Remove sDefault as static variable.Jelmer Vernooij1-1/+1
(This used to be commit 16f36ce499e93860dd535034a584ec2b93e7a172)
2008-02-28Merge branch 'v4-0-trivial' into v4-0-testJelmer Vernooij12-37/+37
(This used to be commit 6cbb241c05539cc62526a366094c9c472e6422a5)
2008-02-28Reorder modules to have rdn_name before objectclass.Andrew Bartlett1-1/+1
This ensures the relative DN is placed in the correct case into the DB. Andrew Bartlett (This used to be commit 16378219fbf9e8a26621f848e85426180822ea29)
2008-02-25Remove uses of global_loadparm.Jelmer Vernooij1-1/+1
(This used to be commit a16c9a2129ce92e7e1a613b2badd168e42ead436)
2008-02-21Introduce mprLpCtx() similar to mprMemCtx() for loadparm_context used byJelmer Vernooij12-36/+36
all EJS code. (This used to be commit 184988866fe8e740f58e3683eefcaa70f8b51d11)
2008-02-21idmap: Handle uid->SID mappingKai Blin2-0/+28
(This used to be commit 6ac6de8476ba036eb041e054bc37e4503dc2fde8)
2008-02-20Avoid python2.2-specific types.Jelmer Vernooij1-1/+1
(This used to be commit d45c6b5574ea732d25e9180c83f1fa807ebe57ba)
2008-02-20Fix static module list generation for ldb.Jelmer Vernooij1-2/+0
(This used to be commit 92c1c0e9137f0845cac6cc96bf78711b6aaffe21)
2008-02-18Rename include to mkinclude to emphasize it is different from make's include.Jelmer Vernooij1-1/+1
(This used to be commit 0e1d0a874ae3d22b8f97a79b81fe0af3ef53a771)
2008-02-18Get rid of 'INTEGRATED' build of modules - now replaced by 'MERGED_OBJ'Jelmer Vernooij1-10/+10
(This used to be commit 269cbf84d8b7dbf3bc88adc04ae283dc908af5ac)
2008-02-16Formatting fixes.Jelmer Vernooij1-2/+3
(This used to be commit bc0fab89e325ebb6ab870b1c3f4b263c50631b70)
2008-02-15Use struct for provision parameters since there are so many of them.Jelmer Vernooij1-18/+22
(This used to be commit 4b9d5bc57ca4ee14c142ea720dce5e4ee97f8c16)
2008-02-13Initial work on a test for samba.tests.samdbJelmer Vernooij2-1/+57
(This used to be commit 8b33860954ca03be1ea45fd8d40963dbbd5b162f)
2008-02-13Fix invalid symbol.Jelmer Vernooij1-3/+5
(This used to be commit bd0ef811c4e6419ba05076fbc151827cea5d1ca1)
2008-02-12Fix subunit runner exit codes.Jelmer Vernooij2-2/+4
(This used to be commit 7911308dbc1233838e44c533302f77b03ea41148)
2008-02-12Correctly increment counters in Subunit test runner.Jelmer Vernooij2-4/+5
(This used to be commit c474a2bb83a3e28a0b83f3b8ca1b646742dfca3d)
2008-02-11Remove Samba 3 backwards compatibility code in C.Jelmer Vernooij2-508/+0
This code is no longer used, and equivalent code already exists in Python (scripting/python/samba/samba3.py) (This used to be commit c16212e8bf5343496ea4b3afc30a8b4d3a0afe2d)
2008-02-11Use SMB_CONF_PATH environment variable inside tests rather than hardcoded paths.Jelmer Vernooij5-8/+13
(This used to be commit eb04de69c0e319e18b148191946808f81e1cc8c4)
2008-02-11Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-pythonJelmer Vernooij1-2/+2
(This used to be commit 35f5c8294e9f3b304987597d4bcfc75fdda05982)
2008-02-11provision: Fix new user creation.Kai Blin1-2/+2
Spotted by nobody88 in IRC. (This used to be commit 38d4e2407afb942de21379dc886f9e4c5532a2b9)
2008-02-10More syntax fixes, use more standard python functions.Jelmer Vernooij1-328/+247
(This used to be commit ea07509b4a9335a3b3fe6f6da1124fd1aab33c96)