From d9b2b9b7578edb367174b1a516f38feb6eb028ae Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 10 Nov 2006 23:45:06 +0000
Subject: [PATCH] Make a number of changes to administrative tools provided with OpenDS. These are all made under the umbrella of issue #994, but there are individual issues for each change.
---
opends/src/server/org/opends/server/core/DirectoryServer.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/DirectoryServer.java b/opends/src/server/org/opends/server/core/DirectoryServer.java
index 9ea387d..3353c09 100644
--- a/opends/src/server/org/opends/server/core/DirectoryServer.java
+++ b/opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -7466,8 +7466,10 @@
// Create the command-line argument parser for use with this program.
+ String toolDescription = getMessage(MSGID_DSCORE_TOOL_DESCRIPTION);
ArgumentParser argParser =
- new ArgumentParser("org.opends.server.core.DirectoryServer", false);
+ new ArgumentParser("org.opends.server.core.DirectoryServer",
+ toolDescription, false);
// Initialize all the command-line argument types and register them with the
@@ -7503,7 +7505,6 @@
systemInfo = new BooleanArgument("systeminfo", 's', "systemInfo",
MSGID_DSCORE_DESCRIPTION_SYSINFO);
- systemInfo.setHidden(true);
argParser.addArgument(systemInfo);
--
Gitblit v1.10.0