Created
March 29, 2019 16:35
-
-
Save krasnuydyx/f9f2b8ba2810d3d083326f9ad3145e1a to your computer and use it in GitHub Desktop.
Simple backup script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Configuration | |
SRC_CODE="/var/jenkins_home" | |
BACKUP_DIR="/home/ec2-user/" | |
PROJECT_NAME="jenkins-vfqa" | |
DST_HOST="user@host" | |
REMOTE_DST_DIR="/root/backup" | |
EXCLUDES="-x '*/workspace/*' '*/jobs/*/builds/*' '*/jobs/*/lastStable/*' '*/jobs/*/lastSuccessful/*'" | |
BACKUP_DAILY=true # if set to false backup will not work | |
BACKUP_WEEKLY=true # if set to false backup will not work | |
BACKUP_MONTHLY=true # if set to false backup will not work | |
BACKUP_RETENTION_DAILY=3 | |
BACKUP_RETENTION_WEEKLY=3 | |
BACKUP_RETENTION_MONTHLY=3 | |
BACKUP_MODE='local-only' ## Available option ( 'local-only' | 'remote-only' | 'local-remote' ) | |
MONTH=`date +%d` | |
DAYWEEK=`date +%u` | |
if [[ ( $MONTH -eq 1 ) && ( $BACKUP_MONTHLY == true ) ]]; | |
then | |
FN='monthly' | |
elif [[ ( $DAYWEEK -eq 7 ) && ( $BACKUP_WEEKLY == true ) ]]; | |
then | |
FN='weekly' | |
elif [[ ( $DAYWEEK -lt 7 ) && ( $BACKUP_DAILY == true ) ]]; | |
then | |
FN='daily' | |
fi | |
DATE=$FN-`date +"%Y%m%d"` | |
function local_remote | |
{ | |
zip -rq $BACKUP_DIR/$PROJECT_NAME-$DATE.zip $SRC_CODE $EXCLUDES | |
cd $BACKUP_DIR/ | |
ls -t | grep $PROJECT_NAME | grep daily | sed -e 1,"$BACKUP_RETENTION_DAILY"d | xargs -d '\n' rm -R > /dev/null 2>&1 | |
ls -t | grep $PROJECT_NAME | grep weekly | sed -e 1,"$BACKUP_RETENTION_WEEKLY"d | xargs -d '\n' rm -R > /dev/null 2>&1 | |
ls -t | grep $PROJECT_NAME | grep monthly | sed -e 1,"$BACKUP_RETENTION_MONTHLY"d | xargs -d '\n' rm -R > /dev/null 2>&1 | |
rsync -avh --delete $BACKUP_DIR/ $DST_HOST:$REMOTE_DST_DIR | |
} | |
function local_only | |
{ | |
zip -rq $BACKUP_DIR/$PROJECT_NAME-$DATE.zip $SRC_CODE $EXCLUDES | |
cd $BACKUP_DIR/ | |
ls -t | grep $PROJECT_NAME | grep daily | sed -e 1,"$BACKUP_RETENTION_DAILY"d | xargs -d '\n' rm -R > /dev/null 2>&1 | |
ls -t | grep $PROJECT_NAME | grep weekly | sed -e 1,"$BACKUP_RETENTION_WEEKLY"d | xargs -d '\n' rm -R > /dev/null 2>&1 | |
ls -t | grep $PROJECT_NAME | grep monthly | sed -e 1,"$BACKUP_RETENTION_MONTHLY"d | xargs -d '\n' rm -R > /dev/null 2>&1 | |
} | |
function remote_only | |
{ | |
zip -rq $BACKUP_DIR/$PROJECT_NAME-$DATE.zip $SRC_CODE $EXCLUDES | |
rsync -avh --remove-source-files $BACKUP_DIR/ $DST_HOST:$REMOTE_DST_DIR | |
ssh -t -t $DST_HOST "cd $REMOTE_DST_DIR ; ls -t | grep $PROJECT_NAME | grep daily | sed -e 1,"$BACKUP_RETENTION_DAILY"d | xargs -d '\n' rm -R > /dev/null 2>&1" | |
ssh -t -t $DST_HOST "cd $REMOTE_DST_DIR ; ls -t | grep $PROJECT_NAME | grep weekly | sed -e 1,"$BACKUP_RETENTION_WEEKLY"d | xargs -d '\n' rm -R > /dev/null 2>&1" | |
ssh -t -t $DST_HOST "cd $REMOTE_DST_DIR ; ls -t | grep $PROJECT_NAME | grep monthly | sed -e 1,"$BACKUP_RETENTION_MONTHLY"d | xargs -d '\n' rm -R > /dev/null 2>&1" | |
} | |
if [ $BACKUP_MODE == local-remote ]; then | |
if [[ ( $BACKUP_DAILY == true ) && ( ! -z "$BACKUP_RETENTION_DAILY" ) && ( $BACKUP_RETENTION_DAILY -ne 0 ) && ( $FN == daily ) ]]; then | |
local_remote | |
fi | |
if [[ ( $BACKUP_WEEKLY == true ) && ( ! -z "$BACKUP_RETENTION_WEEKLY" ) && ( $BACKUP_RETENTION_WEEKLY -ne 0 ) && ( $FN == weekly ) ]]; then | |
local_remote | |
fi | |
if [[ ( $BACKUP_MONTHLY == true ) && ( ! -z "$BACKUP_RETENTION_MONTHLY" ) && ( $BACKUP_RETENTION_MONTHLY -ne 0 ) && ( $FN == monthly ) ]]; then | |
local_remote | |
fi | |
elif [ $BACKUP_MODE == local-only ]; then | |
if [[ ( $BACKUP_DAILY == true ) && ( ! -z "$BACKUP_RETENTION_DAILY" ) && ( $BACKUP_RETENTION_DAILY -ne 0 ) && ( $FN == daily ) ]]; then | |
local_only | |
fi | |
if [[ ( $BACKUP_WEEKLY == true ) && ( ! -z "$BACKUP_RETENTION_WEEKLY" ) && ( $BACKUP_RETENTION_WEEKLY -ne 0 ) && ( $FN == weekly ) ]]; then | |
local_only | |
fi | |
if [[ ( $BACKUP_MONTHLY == true ) && ( ! -z "$BACKUP_RETENTION_MONTHLY" ) && ( $BACKUP_RETENTION_MONTHLY -ne 0 ) && ( $FN == monthly ) ]]; then | |
local_only | |
fi | |
elif [ $BACKUP_MODE == remote-only ]; then | |
if [[ ( $BACKUP_DAILY == true ) && ( ! -z "$BACKUP_RETENTION_DAILY" ) && ( $BACKUP_RETENTION_DAILY -ne 0 ) && ( $FN == daily ) ]]; then | |
remote_only | |
fi | |
if [[ ( $BACKUP_WEEKLY == true ) && ( ! -z "$BACKUP_RETENTION_WEEKLY" ) && ( $BACKUP_RETENTION_WEEKLY -ne 0 ) && ( $FN == weekly ) ]]; then | |
remote_only | |
fi | |
if [[ ( $BACKUP_MONTHLY == true ) && ( ! -z "$BACKUP_RETENTION_MONTHLY" ) && ( $BACKUP_RETENTION_MONTHLY -ne 0 ) && ( $FN == monthly ) ]]; then | |
remote_only | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment