From 63b6bd9c13a41c6d0c0abc6f857c67192f2880c6 Mon Sep 17 00:00:00 2001
From: Mark Craig <mark.craig@forgerock.com>
Date: Thu, 13 Sep 2012 07:27:26 +0000
Subject: [PATCH] Review comment from Violette

---
 opendj3/src/main/docbkx/admin-guide/chap-groups.xml |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/opendj3/src/main/docbkx/admin-guide/chap-groups.xml b/opendj3/src/main/docbkx/admin-guide/chap-groups.xml
index dc82815..4754e92 100644
--- a/opendj3/src/main/docbkx/admin-guide/chap-groups.xml
+++ b/opendj3/src/main/docbkx/admin-guide/chap-groups.xml
@@ -44,6 +44,28 @@
  
  <para>This chapter demonstrates how to work with groups.</para>
 
+ <tip>
+  <para>The examples in this chapter assume that an
+  <literal>ou=Groups,dc=example,dc=com</literal> entry already exists. If you
+  imported data from <link xlink:href="http://opendj.forgerock.org/Example.ldif"
+  xlink:show="new">Example.ldif</link>, then you already have the entry. If you
+  generated data during setup and did not create an organizational unit for
+  groups yet, create the entry before you try the examples.</para>
+
+  <screen>$ ldapmodify
+ --defaultAdd
+ --port 1389
+ --bindDN "cn=Directory Manager"
+ --bindPassword password
+dn: ou=Groups,dc=example,dc=com
+objectClass: organizationalunit
+objectClass: top
+ou: Groups
+
+Processing ADD request for ou=Groups,dc=example,dc=com
+ADD operation successful for DN ou=Groups,dc=example,dc=com</screen>
+ </tip>
+
  <section xml:id="static-groups">
   <title>Creating Static Groups</title>
   <indexterm>

--
Gitblit v1.10.0