Code

Added readmy for cn=config
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 12 Apr 2011 08:41:40 +0000 (08:41 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 12 Apr 2011 08:41:40 +0000 (08:41 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20707 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/README.cn=config [new file with mode: 0644]

diff --git a/gosa-core/README.cn=config b/gosa-core/README.cn=config
new file mode 100644 (file)
index 0000000..65e295b
--- /dev/null
@@ -0,0 +1,36 @@
+OpenLDAP setup using cn=config
+==============================
+
+In order to include additional schema files into your cn=config driven
+LDAP setup, add the required schema files this way:
+
+# ldapadd -Y EXTERNAL -H ldapi:/// -f your_schema_file.ldif
+
+The GOsa schema packages include .schema and .ldif versions of the
+schema files.
+
+This for loop might help when adding schema files to a (nearly) fully
+stuffed installation:
+
+8<----------------------------------------------------------------------------
+for schema in \
+       gosa/samba3.ldif \
+       gosa/gosystem.ldif \
+       gosa/gofon.ldif \
+       gosa/gofax.ldif \
+       gosa/goto.ldif \
+       gosa/goserver.ldif \
+       gosa/gosa-samba3.ldif \
+       gosa/goto-mime.ldif \
+       gosa/trust.ldif \
+       gosa/pureftpd.ldif \
+       gosa/fai.ldif \
+       gosa/sudo.ldif \
+       gosa/openssh-lpk.ldif \
+       gosa/nagios.ldif \
+       gosa/kolab2.ldif \
+       dyngroup.ldif; do
+
+       ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/ldap/schema/$schema || exit 1
+done
+8<----------------------------------------------------------------------------