sed -i "s|-STG-PATH-|$STGPATH|g" "$STGPATH/stargazer.conf"
-LOGFILE=`pwd`"/"`date "+%Y-%m-%d-%H%M%S.console.log"`
+CURPATH=`pwd`
+LOGFILE="$CURPATH/"`date "+%Y-%m-%d-%H%M%S.console.log"`
cd "$STGPATH"
+printf "Starting Stargazer... "
+
"$STGPATH/stargazer" "$STGPATH" >> "$LOGFILE" 2>&1 &
COUNT=""
PID=`cat "$STGPATH/stargazer.pid"`
printf "Started with pid $PID\n"
-SGCONFPATH="$BASEPATH/stg/projects/sgconf"
-
-RES=`"$SGCONFPATH/sgconf" -s localhost -p 5555 -u admin -w 123456 --get-admins`
-
-if [ "$?" != "0" ]
-then
- printf "Failed to get admins list. Result:\n$RES\n"
- exit 0
-fi
-
-printf "Got admins list:\n$RES\n"
+printf "\nTesting admins:\n"
+"$CURPATH/test_admins.sh" "$BASEPATH"
+printf "\nTesting services:\n"
+"$CURPATH/test_services.sh" "$BASEPATH"
+printf "\n"
-printf "Stopping...\n"
+printf "Stopping... "
kill $PID
COUNT=""