From e7ffd790650590446db63b89cfa6e3ffb2edaefd Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 18 Jul 2007 23:32:04 +0000
Subject: [PATCH] In order to be coherent with the graphical UI and because it is more intuitive option, substitute the "noWindowsService" option of the CLI setup by "enableWindowsService" option.  The WIKI has been updated to reflect these changes.

---
 opendj-sdk/opends/tests/functional-tests/shared/functions/dsadm.xml |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opendj-sdk/opends/tests/functional-tests/shared/functions/dsadm.xml b/opendj-sdk/opends/tests/functional-tests/shared/functions/dsadm.xml
index 58ed49f..15aeb3b 100755
--- a/opendj-sdk/opends/tests/functional-tests/shared/functions/dsadm.xml
+++ b/opendj-sdk/opends/tests/functional-tests/shared/functions/dsadm.xml
@@ -81,9 +81,9 @@
         </function-arg-description>
         <function-arg-property name="type" value="filename"/>
       </function-arg-def>
-      <function-arg-def name="dsNoWindowsService" type="optional">
+      <function-arg-def name="dsEnableWindowsService" type="optional">
         <function-arg-description>
-          Do not enable as a Windows Service
+          Enable as a Windows Service
         </function-arg-description>
         <function-arg-property name="type" value="boolean"/>
       </function-arg-def>            
@@ -125,8 +125,8 @@
         if dsBindPwdFile:
           STAFCmdParamsList.append('-j "%s"' % dsBindPwdFile)
 
-        if dsNoWindowsService:
-          STAFCmdParamsList.append('-n')
+        if dsEnableWindowsService:
+          STAFCmdParamsList.append('-e')
         
         if dsHelp:
           STAFCmdParamsList.append('-H')

--
Gitblit v1.10.0