From fa7546cced44aa2cfbbd754ac3ede39d4270ac6e Mon Sep 17 00:00:00 2001
From: brinn <brinn>
Date: Tue, 8 Nov 2011 14:18:47 +0000
Subject: [PATCH] minor: replace ETL Server by Data Store Server in all
 remaining places

SVN: 23584
---
 datastore_server/dist/datastore_server.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/datastore_server/dist/datastore_server.sh b/datastore_server/dist/datastore_server.sh
index 81d0ea56d75..cf66a0bdb54 100755
--- a/datastore_server/dist/datastore_server.sh
+++ b/datastore_server/dist/datastore_server.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Control script for CISD openBIS ETL Server on Unix / Linux systems
+# Control script for CISD openBIS Data Store Server on Unix / Linux systems
 # -------------------------------------------------------------------------
 
 awkBin()
@@ -93,14 +93,14 @@ printStatus()
     PID=`cat $PIDFILE`
     isPIDRunning $PID
     if [ $? -eq 0 ]; then
-      echo "ETL Server is running (pid $PID)"
+      echo "Data Store Server is running (pid $PID)"
       return 0
     else
-      echo "ETL Server is dead (stale pid $PID)"
+      echo "Data Store Server is dead (stale pid $PID)"
       return 1
     fi
   else
-    echo "ETL Server is not running."
+    echo "Data Store Server is not running."
     return 2
   fi
 }
@@ -155,7 +155,7 @@ case "$command" in
     getStatus
     EXIT_STATUS=$?
     if [ $EXIT_STATUS -eq 0 ]; then
-      echo "Cannot start ETL Server: already running."
+      echo "Cannot start Data Store Server: already running."
       exit 100
     fi
 
-- 
GitLab