From 30f710f4e2bd2ae788fdac0c79a557fe584c74a9 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 06 Sep 2007 21:53:56 +0000
Subject: [PATCH] Update the start-ds script to eliminate a warning message about the inability to acquire a lock file. The server was functioning properly, but the message should not have been printed.
---
opends/resource/bin/start-ds | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opends/resource/bin/start-ds b/opends/resource/bin/start-ds
index 9eab22d..33bfe29 100755
--- a/opends/resource/bin/start-ds
+++ b/opends/resource/bin/start-ds
@@ -164,7 +164,7 @@
# An exit code of 98 means that the server is already running.
${JAVA_BIN} ${SCRIPT_NAME_ARG} org.opends.server.core.DirectoryServer \
--configClass org.opends.server.extensions.ConfigFileHandler \
- --configFile "${CONFIG_FILE}" --checkStartability
+ --configFile "${CONFIG_FILE}" --checkStartability > /dev/null 2>&1
EC=${?}
if test ${EC} -eq 98
then
--
Gitblit v1.10.0