Skip to content
Snippets Groups Projects
Commit 03a1d31b authored by felmer's avatar felmer
Browse files

LMS-2471 improved check whether sprint server is from this week or not

SVN: 22779
parent 0a3f0729
No related branches found
No related tags found
No related merge requests found
#! /bin/bash
#
# This script checks whether openBIS AS server is a sprint server installed in the current week
# or not. If yes exit (with exit code 0) is executed.
#
# usage: check-and-exit-if-new-sprint-server.sh <servers>
#
# where
# <servers> is the path to the directory containing the server folders 'openBIS-server'
# and 'datastore_server',
#
if [ $# -ne 1 ]; then
echo "Usage: check-and-exit-if-new-sprint-server.sh <servers>"
exit 1
fi
SERVERS="$1"
LOG_FILE=$SERVERS/openBIS-server/jetty/logs/jetty.out
CURRENT_VERSION=UNKNOWN
if [ -f $LOG_FILE ]; then
CURRENT_VERSION=`awk '/STATUS.CISDContextLoaderListener - Version/ {print $1" "$2" "$8" "$9}' $LOG_FILE | tail -1`
echo "Current openBIS Application Server: $CURRENT_VERSION"
if [ "SNAPSHOT" != "`echo $CURRENT_VERSION|awk '{print $3}'`" ]; then
TIME_STAMP="`echo $CURRENT_VERSION|awk '{print $1, $2}'`"
WEEK=`date --date="$TIME_STAMP" "+%W"`
if [ $? -ne 0 ]; then
# Mac OSX has a different flavor of date command
WEEK=`date -j -f "%Y-%m-%d %H:%M:%S" "$TIME_STAMP" "+%W"`
fi
CURRENT_WEEK=`date "+%W"`
if [ "$WEEK" = "$CURRENT_WEEK" ]; then
echo "Sprint server not replaced until next week."
exit
fi
fi
fi
......@@ -10,35 +10,15 @@
# Crontab entry:
# 30 3 * * * [ -f $HOME/.profile ] && . $HOME/.profile && [ -f $HOME/.bash_profile ] && . $HOME/.bash_profile && nightly-upgrade-generic-openbis.sh &>> openbis-cronjob.txt
#
# Dependencies:
# - check-and-exit-if-new-sprint-server.sh
BIN_DIR=`dirname "$0"`
SERVERS=sprint
echo ":::::::::::::::::::: Nightly Upgrade Generic openBIS Servers [`date`] :::::::::::::::::::::"
##################################################
#
# Check whether upgrade should be done or not
#
LOG_FILE=$SERVERS/openBIS-server/jetty/logs/openbis_log.txt
CURRENT_VERSION=UNKNOWN
if [ -f $LOG_FILE ]; then
CURRENT_VERSION=`awk '/OPERATION.CISDContextLoaderListener - Version/ {print $1" "$2" "$8" "$9}' $LOG_FILE | tail -1`
echo "Current openBIS Application Server: $CURRENT_VERSION"
if [ "SNAPSHOT" != "`echo $CURRENT_VERSION|awk '{print $3}'`" ]; then
TIME_STAMP="`echo $CURRENT_VERSION|awk '{print $1, $2}'`"
WEEK=`date --date="$TIME_STAMP" "+%W"`
if [ $? -ne 0 ]; then
# Mac OSX has a different flavor of date command
WEEK=`date -j -f "%Y-%m-%d %H:%M:%S" "$TIME_STAMP" "+%W"`
fi
CURRENT_WEEK=`date "+%W"`
if [ "$WEEK" = "$CURRENT_WEEK" ]; then
echo "Sprint server not replaced until next week."
exit
fi
fi
fi
"$BIN_DIR/check-and-exit-if-new-sprint-server.sh" "$SERVERS"
##################################################
#
......
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