From e1e9596f6ae81d9aeb74177cf2792533966f45eb Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Mon, 23 Jul 2007 18:25:05 +0000
Subject: [PATCH] This commit does some initial work in anticipation of the reverter tool:
---
opends/src/quicksetup/org/opends/quicksetup/Installation.java | 21 +++++++++++++++++++--
1 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/Installation.java b/opends/src/quicksetup/org/opends/quicksetup/Installation.java
index f3bfd27..4856787 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Installation.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Installation.java
@@ -147,16 +147,26 @@
public static final String WINDOWS_UNINSTALL_FILE_NAME = "uninstall.bat";
/**
- * The UNIX uninstall script file name.
+ * The UNIX upgrade script file name.
*/
public static final String UNIX_UPGRADE_FILE_NAME = "upgrade";
/**
- * The Windows uninstall batch file name.
+ * The Windows upgrade batch file name.
*/
public static final String WINDOWS_UPGRADE_FILE_NAME = "upgrade.bat";
/**
+ * The UNIX revert script file name.
+ */
+ public static final String UNIX_REVERT_FILE_NAME = "revert";
+
+ /**
+ * The Windows revert batch file name.
+ */
+ public static final String WINDOWS_REVERT_FILE_NAME = "revert.bat";
+
+ /**
* The UNIX start script file name.
*/
public static final String UNIX_START_FILE_NAME = "start-ds";
@@ -203,6 +213,13 @@
public static final String HISTORY_LOG_FILE_NAME = "log";
/**
+ * The name of the directory in an upgrade backup directory (child
+ * of the 'history' directory) that contains the files from a
+ * previous version.
+ */
+ public static final String HISTORY_BACKUP_FILES_DIR_NAME = "files";
+
+ /**
* Generic name for the backup tool.
*/
public static final String BACKUP = "backup";
--
Gitblit v1.10.0