From 232d13d704160f8b3f8a7a3acfabee33d5349fc1 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.

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

diff --git a/opends/tests/functional-tests/shared/functions/dsadm.xml b/opends/tests/functional-tests/shared/functions/dsadm.xml
index 58ed49f..15aeb3b 100755
--- a/opends/tests/functional-tests/shared/functions/dsadm.xml
+++ b/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