diff options
author | Simo Sorce <idra@samba.org> | 2006-07-23 18:49:07 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:10:19 -0500 |
commit | cb85a76d77243c6834c0cf33eaa50a76dbefcdf8 (patch) | |
tree | 69adc5f318e625621ca794f44ca2daf0ec7333e0 /source4/setup | |
parent | 151fc7400611b90f3236c74e3c40e8f75385fdee (diff) | |
download | samba-cb85a76d77243c6834c0cf33eaa50a76dbefcdf8.tar.gz samba-cb85a76d77243c6834c0cf33eaa50a76dbefcdf8.tar.bz2 samba-cb85a76d77243c6834c0cf33eaa50a76dbefcdf8.zip |
r17208: Add a away to test the ldb module.
Actually you can't test both classic and ldb together, but you can replace the standard
script/tests/mktestsetup.sh file with this one and run make test to see share_ldb in action
(This used to be commit d4c2b893504feb3a232e74d14584405b3aaaf942)
Diffstat (limited to 'source4/setup')
-rw-r--r-- | source4/setup/share.ldif | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/source4/setup/share.ldif b/source4/setup/share.ldif new file mode 100644 index 0000000000..750a070c8a --- /dev/null +++ b/source4/setup/share.ldif @@ -0,0 +1,46 @@ +dn: @INDEXLIST +@IDXATTR: name + +dn: @ATTRIBUTES +cn: CASE_INSENSITIVE +dc: CASE_INSENSITIVE +name: CASE_INSENSITIVE +dn: CASE_INSENSITIVE +objectClass: CASE_INSENSITIVE + +### Shares basedn +dn: CN=Shares +objectClass: top +objectClass: organizationalUnit +cn: Shares + +### Default IPC$ Share +dn: CN=IPC$,CN=Shares +objectClass: top +objectClass: share +cn: IPC$ +name: IPC$ +type: IPC +path: /tmp +comment: Remote IPC +max-connections: -1 +available: True +readonly: True +browseable: False +ntvfs-handler: default + +### Default ADMIN$ Share +dn: CN=ADMIN$,CN=Shares +objectClass: top +objectClass: share +cn: ADMIN$ +name: ADMIN$ +type: DISK +path: /tmp +comment: Remote Admin +max-connections: -1 +available: True +readonly: True +browseable: False +ntvfs-handler: default + |