This is an automated email from the ASF dual-hosted git repository.
smckinney pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-fortress-core.git
The following commit(s) were added to refs/heads/master by this push:
new c67ec93 reorder example
c67ec93 is described below
commit c67ec9305f5f1c5b78066345270cb367ccf40635
Author: smckinney <smckinney@apache.org>
AuthorDate: Tue Nov 12 08:36:50 2019 -0600
reorder example
---
README-CONFIG.md | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/README-CONFIG.md b/README-CONFIG.md
index cc291b9..72198ae 100644
--- a/README-CONFIG.md
+++ b/README-CONFIG.md
@@ -58,17 +58,7 @@ D. Apache Ant script with the mapping rules: A -> B = C:
For Example:
-A. Snip from [fortress.properties.src](./config/fortress.properties.src)
-```
-# Host name and port of LDAP DIT:
-host=@LDAP_HOST@
-port=@LDAP_PORT@
-
-# Options are openldap or apacheds (default):
-ldap.server.type=@SERVER_TYPE@
-```
-
-B. Snip from [build.properties](./build.properties.example)
+A. Snip from [build.properties](./build.properties)
```
# These parameters point fortress to LDAP host:
ldap.host=ldapvip.net
@@ -78,6 +68,16 @@ ldap.port=389
ldap.server.type=openldap
```
+B. Snip from [fortress.properties.src](./config/fortress.properties.src)
+```
+# Host name and port of LDAP DIT:
+host=@LDAP_HOST@
+port=@LDAP_PORT@
+
+# Options are openldap or apacheds (default):
+ldap.server.type=@SERVER_TYPE@
+```
+
C. Becomes snip from [fortress.properties](./config/fortress.properties):
```
# Host name and port of LDAP DIT:
@@ -88,7 +88,7 @@ port=389
ldap.server.type=openldap
```
-*Note: Files from category C are generated during Fortress build and not checked into source.*
+ *Note: Files from C are generated during build (```mvn install```) and not checked in as
source.*
-------------------------------------------------------------------------------
## SECTION 2. Fortress Ant Property Files
|