Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
03a1d31b
Commit
03a1d31b
authored
13 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
LMS-2471 improved check whether sprint server is from this week or not
SVN: 22779
parent
0a3f0729
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openbis_all/source/bash/check-and-exit-if-new-sprint-server
+37
-0
37 additions, 0 deletions
openbis_all/source/bash/check-and-exit-if-new-sprint-server
openbis_all/source/bash/nightly-upgrade-generic-openbis.sh
+3
-23
3 additions, 23 deletions
openbis_all/source/bash/nightly-upgrade-generic-openbis.sh
with
40 additions
and
23 deletions
openbis_all/source/bash/check-and-exit-if-new-sprint-server
0 → 100755
+
37
−
0
View file @
03a1d31b
#! /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
This diff is collapsed.
Click to expand it.
openbis_all/source/bash/nightly-upgrade-generic-openbis.sh
+
3
−
23
View file @
03a1d31b
...
...
@@ -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
"
##################################################
#
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment