From 9aca206b3757d8d7bccae4b2912f403eb67b3446 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Wed, 23 Aug 2006 16:44:33 +0000
Subject: [PATCH] Update the OpenDS setup process to add a "Please wait while the server initializes...." message at the beginning of the process which can make any delays introduced by the initial configuration and schema processing more palatable to the end user.
---
opends/src/server/org/opends/server/tools/InstallDS.java | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/InstallDS.java b/opends/src/server/org/opends/server/tools/InstallDS.java
index b131cd4..921e9bb 100644
--- a/opends/src/server/org/opends/server/tools/InstallDS.java
+++ b/opends/src/server/org/opends/server/tools/InstallDS.java
@@ -304,6 +304,11 @@
if (! silentInstall.isPresent())
{
System.out.println(versionString);
+ System.out.println();
+
+ int msgID = MSGID_INSTALLDS_INITIALIZING;
+ String message = getMessage(msgID);
+ System.out.println(wrapText(message, MAX_LINE_WIDTH));
}
--
Gitblit v1.10.0