From 55d393312460ce9ff84895cabb2ffaa60a035343 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Sat, 14 Oct 2006 00:50:40 +0000
Subject: [PATCH] Move the ConfigFileHandler from the config package to the extensions package. This is more in-line with the rest of the code conventions that we use, and it makes it easier to include the config package in what we consider to be our public API.
---
opendj-sdk/opends/resource/bin/start-ds.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/resource/bin/start-ds.sh b/opendj-sdk/opends/resource/bin/start-ds.sh
index b812052..53a7c45 100755
--- a/opendj-sdk/opends/resource/bin/start-ds.sh
+++ b/opendj-sdk/opends/resource/bin/start-ds.sh
@@ -77,13 +77,13 @@
shift
${JAVA_BIN} ${JAVA_ARGS} \
org.opends.server.core.DirectoryServer \
- --configClass org.opends.server.config.ConfigFileHandler \
+ --configClass org.opends.server.extensions.ConfigFileHandler \
--configFile ${INSTANCE_ROOT}/config/config.ldif \
"$@" 2>&1 | tee -i -a ${INSTANCE_ROOT}/logs/server.out
else
nohup ${JAVA_BIN} ${JAVA_ARGS} \
org.opends.server.core.DirectoryServer \
- --configClass org.opends.server.config.ConfigFileHandler \
+ --configClass org.opends.server.extensions.ConfigFileHandler \
--configFile ${INSTANCE_ROOT}/config/config.ldif \
"$@" >> ${INSTANCE_ROOT}/logs/server.out 2>&1 &
fi
--
Gitblit v1.10.0