diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-01-03 05:31:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:36:00 -0500 |
commit | e8dfa06d45b4aaa784b9f8795f4197451aed4188 (patch) | |
tree | 6c854d4cff4e28cd78f69b16ea4b5d279ce099b6 /source4/setup/provision | |
parent | 43b715a96d4abe73b9478456ced498d58a9077d4 (diff) | |
download | samba-e8dfa06d45b4aaa784b9f8795f4197451aed4188.tar.gz samba-e8dfa06d45b4aaa784b9f8795f4197451aed4188.tar.bz2 samba-e8dfa06d45b4aaa784b9f8795f4197451aed4188.zip |
r20495: Further notes on joining with fedora DS.
Add in a hook for adding an ACI, needed to allow anonymous access
until we hook across a SYSTEM token to the LDAP server.
Andrew Bartlett
(This used to be commit f45504e2714680978f101b4a98516686a17531df)
Diffstat (limited to 'source4/setup/provision')
-rwxr-xr-x | source4/setup/provision | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source4/setup/provision b/source4/setup/provision index 8912b28792..8f1d422f51 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -31,7 +31,8 @@ options = GetOptions(ARGV, 'blank', 'ldap-base', 'ldap-backend=s', - 'ldap-module=s'); + 'ldap-module=s', + 'aci=s'); if (options == undefined) { println("Failed to parse options"); @@ -81,7 +82,7 @@ provision [options] --ldap-base output only an LDIF file, suitable for creating an LDAP baseDN --ldap-backend LDAPSERVER LDAP server to use for this provision --ldap-module= MODULE LDB mapping module to use for the LDAP backend - + --aci= ACI An arbitary LDIF fragment, particularly useful to loading a backend ACI value into a target LDAP server You must provide at least a realm and domain "); @@ -112,6 +113,9 @@ for (r in options) { var key = strupper(join("", split("-", r))); subobj[key] = options[r]; } +if (options["aci"] != undefined) { + println("set ACI: " + subobj["ACI"]); +} if (options["ldap-backend"] != undefined) { subobj["LDAPMODULES"] = subobj["LDAPMODULE"] + ",paged_searches"; |