From 09f3d42c36384ea6d48a518b41e84d87e093705b Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 16 Aug 2007 20:56:31 +0000
Subject: [PATCH] This commit gets the QuickSetup installer working again by specifying the server root during the directory configuration.  This is addressed by adding a hidden arg to ConfigureDS for the server root that the installer uses for the specification of the directory.

---
 opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
index dcc6a71..c59d04a 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
@@ -839,6 +839,9 @@
       }
     }
 
+    argList.add("-R");
+    argList.add(getInstallation().getRootDirectory().getAbsolutePath());
+
     String[] args = new String[argList.size()];
     argList.toArray(args);
     try

--
Gitblit v1.10.0