From 8bbba9d3256c37205f9bd5ab131554c0fa453145 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Tue, 08 Feb 2011 12:03:28 +0000
Subject: [PATCH] Add support for SVR4 packages for OpenDJ. Package name is opendj. It's a single package and has integration with SMF. Default installation is /usr/opendj. Once packages are installed, root must run configure to setup the Instance location (/var/opendj) and owner. And the owner must run setup.

---
 opends/src/quicksetup/org/opends/quicksetup/Installation.java |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/Installation.java b/opends/src/quicksetup/org/opends/quicksetup/Installation.java
index 7957aa9..5b139ba 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Installation.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Installation.java
@@ -23,6 +23,7 @@
  *
  *
  *      Copyright 2006-2010 Sun Microsystems, Inc.
+ *      Portions Copyright 2011 ForgeRock AS
  */
 
 package org.opends.quicksetup;
@@ -50,10 +51,10 @@
 public class Installation {
 
   /**
-   * Relative path to OpenDS jar files.
+   * Relative path to OpenDJ jar files.
    */
   public static final String[] OPEN_DS_JAR_RELATIVE_PATHS =
-          {"lib/quicksetup.jar", "lib/OpenDS.jar", "lib/je.jar"};
+          {"lib/quicksetup.jar", "lib/OpenDJ.jar", "lib/je.jar"};
 
   /**
    * The relative path where all the Windows binaries (batch files) are.
@@ -156,7 +157,7 @@
   /**
    * The path to the default instance.
    */
-  public static final String DEFAULT_INSTANCE_PATH = "/var/opends";
+  public static final String DEFAULT_INSTANCE_PATH = "/var/opendj";
 
   /**
    * The relative path to the instance.loc file.
@@ -167,7 +168,7 @@
   /**
    * The path to the instance.loc file.
    */
-  public static final String INSTANCE_LOCATION_PATH = "/etc/opends/" +
+  public static final String INSTANCE_LOCATION_PATH = "/etc/opendj/" +
     INSTANCE_LOCATION_PATH_RELATIVE;
 
   /**

--
Gitblit v1.10.0