Skip to content
Snippets Groups Projects
Commit fa7546cc authored by brinn's avatar brinn
Browse files

minor: replace ETL Server by Data Store Server in all remaining places

SVN: 23584
parent 9eb67019
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/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() awkBin()
...@@ -93,14 +93,14 @@ printStatus() ...@@ -93,14 +93,14 @@ printStatus()
PID=`cat $PIDFILE` PID=`cat $PIDFILE`
isPIDRunning $PID isPIDRunning $PID
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "ETL Server is running (pid $PID)" echo "Data Store Server is running (pid $PID)"
return 0 return 0
else else
echo "ETL Server is dead (stale pid $PID)" echo "Data Store Server is dead (stale pid $PID)"
return 1 return 1
fi fi
else else
echo "ETL Server is not running." echo "Data Store Server is not running."
return 2 return 2
fi fi
} }
...@@ -155,7 +155,7 @@ case "$command" in ...@@ -155,7 +155,7 @@ case "$command" in
getStatus getStatus
EXIT_STATUS=$? EXIT_STATUS=$?
if [ $EXIT_STATUS -eq 0 ]; then if [ $EXIT_STATUS -eq 0 ]; then
echo "Cannot start ETL Server: already running." echo "Cannot start Data Store Server: already running."
exit 100 exit 100
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment