mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 00:50:51 +00:00
Bruno Fontes
42344f98a5
Still not sure why I keep track of those changes, if I don't need them and do not care about proper handling them. Anyway, it is here if, some some reason I need it back.
29 lines
988 B
Bash
Executable File
29 lines
988 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [[ `nmcli -t -f GENERAL.METERED dev show | grep "METERED:yes"` ]]; then
|
|
echo Backup does not work on metered connections
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z $CONTABO_BACKUP_PATH ]]; then
|
|
echo CONTABO_BACKUP_PATH environment not set
|
|
exit 1
|
|
fi
|
|
sleep 60
|
|
|
|
# Backup Contabo
|
|
/bin/rsync --archive --exclude "files/nextcloud*" --rsh=ssh backupContabo:/home/bruno/backups/* $CONTABO_BACKUP_PATH
|
|
|
|
# Backup OXO
|
|
/bin/rsync --archive --rsh=ssh oxo:~/OXOwebsiteBackup.tar.gz ~/Backups/OXOwebsite/`date '+%Y-%m-%d'`_OXOwebsiteBackup.tar.gz
|
|
|
|
# Delete old backups
|
|
find $CONTABO_BACKUP_PATH/db -type f -name "*.sql.gz" -mtime +15 -delete
|
|
find $CONTABO_BACKUP_PATH/keys -type f -name "*.*" -mtime +15 -delete
|
|
find $CONTABO_BACKUP_PATH/files -type f -name "*.*" -mtime +35 -delete
|
|
find $CONTABO_BACKUP_PATH/mail -type f -name "*.*" -mtime +20 -delete
|
|
|
|
find $CONTABO_BACKUP_PATH/ -type f -name "*.*" -mtime +120 -delete
|
|
|
|
find ~/Backups/OXOwebsite/ -type f -name "*.sql.gz" -mtime +15 -delete
|