summaryrefslogtreecommitdiffstats
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* fix case in objectclass name (not that it really matters); patch from Darren ↵Gerald Carter2004-01-065-11/+11
| | | | Chew <darrenc@vicscouts.asn.au>
* Patch based on work from James Peach <jpeach@sgi.com> to convert over toJeremy Allison2004-01-062-0/+22
| | | | | | using pread/pwrite. Modified a little to ensure fsp->pos is correct. Fix for #889. Jeremy.
* Another little one: Make pdb_test.c at least compile, although its way out ofVolker Lendecke2003-12-302-8/+4
| | | | | | date. Volker
* correct typo in delete user script; bug 887Gerald Carter2003-12-221-1/+1
|
* Small fix from Jérôme Tournier <jerome.tournier@IDEALX.com>Jeremy Allison2003-12-161-2/+2
| | | | Jeremy.
* When parsing 'param = value', don't split 'value' at spaces.Volker Lendecke2003-12-141-1/+1
| | | | | | Thanks to Ralf Spenneberg for the fix. Volker
* removing RCS tagsGerald Carter2003-12-0514-27/+0
|
* * removing extra fileGerald Carter2003-12-053-94/+12
| | | | * updating version in Makefile
* Change PICFLAG -> PICFLAGS to keep in line with version from sourceTim Potter2003-12-051-16/+16
| | | | directory and fix display bug.
* updating top 0.8.2-1 of the smbldap toolsGerald Carter2003-12-0422-813/+1354
|
* sync OID with HEADGerald Carter2003-12-041-1/+1
|
* support munged dial for ldapsam; patch from Aurélien Degrémont; bug 800Gerald Carter2003-12-041-1/+6
|
* added a wbtest program that shows how to access winbindd extended nssAndrew Tridgell2003-11-191-0/+375
| | | | | | | functionality directly from an application. This is under a liberal license as we want application vendors to be able to use the example code
* Add testacl.c ... from Derrell Lipman.Richard Sharpe2003-11-121-0/+280
|
* Add new fields bad_password_count and logon_countJelmer Vernooij2003-11-091-1/+3
|
* added note about stripping comments from LDIF; bug 642Gerald Carter2003-11-051-0/+6
|
* Apply these patches as well ... not sure if they all build. They don't onRichard Sharpe2003-10-242-5/+12
| | | | FreeBSD 4.3. They might on Linux.
* update smbldap-tool sscripts from Jérôme TournierGerald Carter2003-09-2316-663/+694
|
* fix from Brad Langhorst to correctly check if the primaryGroupID has been setGerald Carter2003-09-201-1/+1
|
* updates to SunOne DS schema from André FiebachGerald Carter2003-09-201-2/+22
|
* insert missing sh-bangGerald Carter2003-09-191-0/+1
|
* The -P option to smbclient no longer works - update all smbprint scripts toTim Potter2003-09-193-3/+1
| | | | remove it. Closes bug #473.
* Updated 3.0 schema files for IBM Directory Server 5.1Jim McDonough2003-09-112-0/+61
| | | | Keeps with IBM convention of separate attributetype and objectclass definitions.
* syncing filesGerald Carter2003-09-098-16/+0
|
* samba 3.0 schema filr netscape DS 5.x from Darren ChewGerald Carter2003-09-081-74/+35
|
* updated schema for 3.0 for eDirectory 8.7 and Netscape DS 4.xGerald Carter2003-09-052-251/+259
|
* updating README file after I removed some scriptsGerald Carter2003-08-291-42/+19
|
* remove rcs tagGerald Carter2003-08-281-2/+0
|
* removing outdated scripts and adding comments about 'ldap password syc'Gerald Carter2003-08-284-335/+5
|
* add --help to scriptGerald Carter2003-08-271-1/+8
|
* sync with changes from Jerome Tournier @ IDEALX; should now work with ↵Gerald Carter2003-08-2613-511/+682
| | | | sambaSamAccount schema
* include enhancements from Buchan Milne to generate LDIF modify output in ↵Gerald Carter2003-08-261-11/+114
| | | | addition to add
* adding old NDS schema so I can update itGerald Carter2003-08-201-0/+201
|
* checlking in initial version of 2.2 scripts so I can start updating themGerald Carter2003-08-2035-0/+6143
|
* fix comments about schema dependenciesGerald Carter2003-08-201-3/+4
|
* Put 'wins hook' example back in. Fixes bug #268)Jelmer Vernooij2003-08-142-0/+102
|
* Add some more new common optionsJelmer Vernooij2003-08-131-14/+25
|
* Added by request of "Stefan (metze) Metzmacher" <metze@metzemix.de>.Jeremy Allison2003-08-081-0/+83
| | | | Jeremy.
* Test modules for shadow copy by "Stefan (metze) Metzmacher" <metze@metzemix.de>.Jeremy Allison2003-08-072-2/+14
| | | | Jeremy.
* Update my copyrights according to my agreement with IBMJim McDonough2003-08-011-1/+1
|
* This patch cleans up some of our ldap code, for better behaviour:Andrew Bartlett2003-07-041-4/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We now always read the Domain SID out of LDAP. If the local secrets.tdb is ever different to LDAP, it is overwritten out of LDAP. We also store the 'algorithmic rid base' into LDAP, and assert if it changes. (This ensures cross-host synchronisation, and allows for possible integration with idmap). If we fail to read/add the domain entry, we just fallback to the old behaviour. We always use an existing DN when adding IDMAP entries to LDAP, unless no suitable entry is available. This means that a user's posixAccount will have a SID added to it, or a user's sambaSamAccount will have a UID added. Where we cannot us an existing DN, we use 'sambaSid=S-x-y-z,....' as the DN. The code now allows modifications to the ID mapping in many cases. Likewise, we now check more carefully when adding new user entires to LDAP, to not duplicate SIDs (for users, at this stage), and to add the sambaSamAccount onto the idmap entry for that user, if it is already established (ensuring we do not duplicate sambaSid entries in the directory). The allocated UID code has been expanded to take into account the space between '1000 - algorithmic rid base'. This much better fits into what an NT4 does - allocating in the bottom part of the RID range. On the code cleanup side of things, we now share as much code as possible between idmap_ldap and pdb_ldap. We also no longer use the race-prone 'enumerate all users' method for finding the next RID to allocate. Instead, we just start at the bottom of the range, and increment again if the user already exists. The first time this is run, it may well take a long time, but next time will just be able to use the next Rid. Thanks to metze and AB for double-checking parts of this. Andrew Bartlett
* applying fix for group map conversion (patch from Kristyan Osborne)Gerald Carter2003-07-011-1/+1
|
* Add DTD used by XML passdb backendJelmer Vernooij2003-06-161-0/+46
|
* This patch is Vorlon's fault!John Terpstra2003-06-151-22/+34
|
* fix typo in descriptionGerald Carter2003-06-131-1/+1
|
* check that an attribute is defined and not just non-zeroGerald Carter2003-06-121-1/+1
|
* Make skeleton VFSs compile with new EA modules.Jeremy Allison2003-06-063-0/+238
| | | | Jeremy
* working draft of the idmap_ldap code.Gerald Carter2003-06-051-0/+10
| | | | | | | | Includes sambaUnixIdPool objectclass Still needs cleaning up wrt to name space. More changes to come, but at least we now have a a working distributed winbindd solution.
* Move VFS example skel.c to two different examples: one for opaque operations ↵Alexander Bokovoy2003-06-0410-491/+1563
| | | | and one for transparent. Also add configure support for compiling third-party modules. Patch from Stefan Metzmacher <metze@metzemix.de>
* moving the sambaAccount objectclass to 'historical' to prevent confusion on ↵Gerald Carter2003-05-221-150/+142
| | | | which one should be used for new servers. I'll add a note about uncommenting the older items for ldapsam_compat in the release notes