Skip to content
Snippets Groups Projects
Commit 7b99c72c authored by cramakri's avatar cramakri
Browse files

MINOR: Fixed bug in the generation of the name of the backup directory. Was...

MINOR: Fixed bug in the generation of the name of the backup directory. Was using the month number, not the minute.

SVN: 20681
parent feea19a7
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,11 @@ mkdir -p $CONFIG ...@@ -22,6 +22,11 @@ mkdir -p $CONFIG
$BASE/backup-config.sh $CONFIG $BASE/backup-config.sh $CONFIG
OLD_BIS=$BACKUP_DIR/openBIS-server OLD_BIS=$BACKUP_DIR/openBIS-server
echo "Copying old installation to backup dir"
echo "mv $ROOT_DIR/openBIS-server $OLD_BIS"
echo "mv $ROOT_DIR/datastore_server $BACKUP_DIR/datastore_server"
mv $ROOT_DIR/openBIS-server $OLD_BIS mv $ROOT_DIR/openBIS-server $OLD_BIS
mv $ROOT_DIR/datastore_server $BACKUP_DIR/datastore_server mv $ROOT_DIR/datastore_server $BACKUP_DIR/datastore_server
......
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