Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /bin/bash
# Creates a backup of openBIS AS and DSS service.properties if these files differ
# from the files in ~openbis/config
# Allows a history of service.property files
# 2010, Manuel Kohler D-BSSE
export BACKUP_DIR=~openbis/service_properties_backups
export DATE=`/bin/date +%Y-%m-%d_%H%M`
export DAYS_TO_RETAIN=100
export SP=service.properties
export DSS_SP=datastore_server-service.properties
export CONFIG_DIR=~openbis/config
export PRODUCTIVE=~openbis/sprint/openBIS-server/jetty/webapps/openbis/WEB-INF/classes/service.properties
export DSS_PRODUCTIVE=~openbis/sprint/datastore_server/etc/service.properties
export MAIL_LIST="manuel.kohler@bsse.ethz.ch"
export BOX=`uname -n`
export PLATFORM=`uname -s`
#if [ $PLATFORM = "SunOS" ];
#then
# export MAILX="/usr/bin/mailx"
#else
# export MAILX="/bin/mail"
#fi
umask 077
# openBIS AS
diff $CONFIG_DIR/$SP $PRODUCTIVE
if [ $? -ne 0 ]; then
echo -e "$CONFIG_DIR/$SP and $PRODUCTIVE differ!"
echo -e "* creating a backup of $PRODUCTIVE at $DATE *"
cp $PRODUCTIVE $BACKUP_DIR/${SP}_${BOX}_${DATE}
cp $PRODUCTIVE $CONFIG_DIR/$SP
export LATEST_FILE=`ls -1rt ${SP}* | tail -1`
rm $BACKUP_DIR/$SP
ln -s $LATEST_FILE $BACKUP_DIR/$SP
fi
# openBIS DSS
diff $CONFIG_DIR/$DSS_SP $DSS_PRODUCTIVE
if [ $? -ne 0 ]; then
echo -e "$CONFIG_DIR/service.properties $DSS_PRODUCTIVE"
echo -e "* creating a backup of $DSS_PRODUCTIVE at $DATE "
cp $DSS_PRODUCTIVE $BACKUP_DIR/${DSS_SP}_${BOX}_${DATE}
cp $DSS_PRODUCTIVE $CONFIG_DIR/$DSS_SP
export LATEST_FILE=`ls -1rt ${DSS_SP}* | tail -1`
rm $BACKUP_DIR/$DSS_SP
ln -s $LATEST_FILE $BACKUP_DIR/$DSS_SP
fi
#/usr/bin/find $BACKUP_DIR -type f -mtime +$DAYS_TO_RETAIN -exec rm {} \;
echo " ** Finished ** "