diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-02-04 07:17:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:44:31 -0500 |
commit | 744dddd75be73e4e883241b808b37a12a7a39ac1 (patch) | |
tree | be0695eb7e6692452f515395663edb63df52d56e /source4/setup | |
parent | 627595b7a3c91d02fe8a29737beb77b2a4c4ae0f (diff) | |
download | samba-744dddd75be73e4e883241b808b37a12a7a39ac1.tar.gz samba-744dddd75be73e4e883241b808b37a12a7a39ac1.tar.bz2 samba-744dddd75be73e4e883241b808b37a12a7a39ac1.zip |
r21135: Instead of having hooks to update keytabs as an explicit thing, update
them as a hook on ldb modify, via a module.
This should allow the secrets.ldb to be edited by the admin, and to
have things update in the on-disk keytab just as an in-memory keytab
would.
This isn't really a dsdb plugin, but I don't have any other good ideas
about where to put it.
Andrew Bartlett
(This used to be commit 6ce557a1aff4754d2622be8f1c6695d9ee788d54)
Diffstat (limited to 'source4/setup')
-rw-r--r-- | source4/setup/secrets.ldif | 15 | ||||
-rw-r--r-- | source4/setup/secrets_init.ldif | 15 |
2 files changed, 15 insertions, 15 deletions
diff --git a/source4/setup/secrets.ldif b/source4/setup/secrets.ldif index 1617cfb9bf..ef5cb695d0 100644 --- a/source4/setup/secrets.ldif +++ b/source4/setup/secrets.ldif @@ -1,18 +1,3 @@ -dn: @INDEXLIST -@IDXATTR: cn -@IDXATTR: flatname -@IDXATTR: realm - -dn: @ATTRIBUTES -realm: CASE_INSENSITIVE -flatname: CASE_INSENSITIVE -sAMAccountName: CASE_INSENSITIVE - -#Add modules to the list to activate them by default -#beware often order is important -dn: @MODULES -@LIST: operational - dn: CN=LSA Secrets objectClass: top objectClass: container diff --git a/source4/setup/secrets_init.ldif b/source4/setup/secrets_init.ldif new file mode 100644 index 0000000000..9eda47e463 --- /dev/null +++ b/source4/setup/secrets_init.ldif @@ -0,0 +1,15 @@ +dn: @INDEXLIST +@IDXATTR: cn +@IDXATTR: flatname +@IDXATTR: realm + +dn: @ATTRIBUTES +realm: CASE_INSENSITIVE +flatname: CASE_INSENSITIVE +sAMAccountName: CASE_INSENSITIVE + +#Add modules to the list to activate them by default +#beware often order is important +dn: @MODULES +@LIST: update_keytab,operational,objectguid + |