2020-06-30 06:47:31 -05:00
|
|
|
#! /bin/bash
|
|
|
|
#
|
|
|
|
# desktop.sh
|
|
|
|
# Backup script for desktops. Meant to be sourced by our main backup script
|
|
|
|
# Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
|
|
|
|
#
|
|
|
|
# Distributed under terms of the MIT license.
|
|
|
|
#
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2020-06-30 06:54:45 -05:00
|
|
|
export OUTDIR="$BACKUPSDIR/{{ inventory_hostname }}"
|
2020-06-30 06:47:31 -05:00
|
|
|
retention=7 # 7-day retention period
|
|
|
|
|
|
|
|
# Sanity checks
|
|
|
|
if [ -z "$BACKUPSDIR" ]; then
|
|
|
|
log "BACKUPSDIR was undefined. Run the main backup script instead of this one."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
if ! [ -d "$OUTDIR" ]; then
|
|
|
|
if ! mkdir "$OUTDIR"; then
|
|
|
|
log "Unable to find or create output directory: $OUTDIR"
|
|
|
|
return 2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Purge oldest backup if we need to
|
|
|
|
currentbackupcount="$(ls -1 "$OUTDIR" | wc -l)"
|
|
|
|
if (( currentbackupcount >= retention )); then
|
|
|
|
lastbackup="$(find "$OUTDIR" -name \*.tar.gz 2>/dev/null | sort | head -n 1)"
|
|
|
|
if [ -f "$lastbackup" ]; then
|
|
|
|
log "Removing old backup: $lastbackup"
|
|
|
|
rm "$lastbackup"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
# WE MAKE BACKUP NOW SERGEI
|
2020-07-11 09:24:11 -05:00
|
|
|
s3bucket="{{ aws_backup_bucket }}"
|
2020-06-30 06:47:31 -05:00
|
|
|
for dir in /home/*; do
|
|
|
|
username="$(basename -- "$dir")"
|
2020-07-11 09:01:45 -05:00
|
|
|
forcefile="$dir/.backup/force"
|
2020-06-30 07:08:09 -05:00
|
|
|
[ -d "$dir/.backup" ] || continue
|
2020-06-30 07:09:29 -05:00
|
|
|
for file in "$dir/.backup/"*; do [ -e "$file" ] || continue; done
|
2020-06-30 07:04:08 -05:00
|
|
|
tar czhf "$OUTDIR/desktop-$username-{{ inventory_hostname }}-$(date -Iseconds).tar.gz" "$dir/.backup/"*
|
2020-07-11 09:51:19 -05:00
|
|
|
# if (( "$(date +%d)" == "1" )) || [ -f "$forcefile" ]; then
|
|
|
|
# log "Detected conditions for monthly dump"
|
|
|
|
# if command -v aws > /dev/null 2>&1 && aws s3 ls "s3://$s3bucket" > /dev/null 2>&1; then
|
|
|
|
# # Time for huge backups piped straight to S3
|
|
|
|
# tar cz \
|
|
|
|
# --exclude "$dir/.ansible" \
|
|
|
|
# --exclude "$dir/.backup" \
|
|
|
|
# --exclude "$dir/.cache" \
|
|
|
|
# --exclude "$dir/.steam" \
|
|
|
|
# --exclude "$dir/Downloads" \
|
|
|
|
# --exclude "$dir/Dropbox" \
|
|
|
|
# --exclude "$dir/Nextcloud" \
|
|
|
|
# --exclude "$dir/snap" \
|
|
|
|
# "$dir/."* \
|
|
|
|
# | aws s3 cp - "s3://$s3bucket/{{ inventory_hostname }}/desktop-$username-{{ inventory_hostname }}-$(date -Iseconds)-full.tar.gz" \
|
|
|
|
# --only-show-errors \
|
|
|
|
# --storage-class STANDARD_IA
|
|
|
|
# else
|
|
|
|
# log "Could not satisfy requirements for AWS CLI"
|
|
|
|
# fi
|
|
|
|
# [ -f "$forcefile" ] && rm "$forcefile"
|
|
|
|
# fi
|
2020-06-30 06:47:31 -05:00
|
|
|
done
|
|
|
|
|