From e01ad71d761c65c94cd8531763c914c07927ea60 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Thu, 01 Sep 2011 10:12:08 +0000
Subject: [PATCH] Fix issue OPENDJ-207, to avoid triggering X11 server when using setup --cli mode.

---
 opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java b/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
index fa7244e..032b457 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
@@ -265,7 +265,7 @@
       }
 
       checkAbort();
-      updateSummaryWithServerState(hmSummary);
+      updateSummaryWithServerState(hmSummary, false);
       setCurrentProgressStep(InstallProgressStep.FINISHED_SUCCESSFULLY);
       notifyListeners(null);
 
@@ -296,7 +296,7 @@
           }
         }
         notifyListeners(getLineBreak());
-        updateSummaryWithServerState(hmSummary);
+        updateSummaryWithServerState(hmSummary, false);
         setCurrentProgressStep(InstallProgressStep.FINISHED_WITH_ERROR);
         Message html = getFormattedError(ex, true);
         notifyListeners(html);
@@ -317,7 +317,7 @@
         }
       }
       notifyListeners(getLineBreak());
-      updateSummaryWithServerState(hmSummary);
+      updateSummaryWithServerState(hmSummary, false);
       setCurrentProgressStep(InstallProgressStep.FINISHED_WITH_ERROR);
       ApplicationException ex = new ApplicationException(
           ReturnCode.BUG,

--
Gitblit v1.10.0