From 8eeaae960cf7d1c8dab937741abcd0374d358471 Mon Sep 17 00:00:00 2001 From: Tykayn Date: Mon, 28 Nov 2022 10:42:22 +0100 Subject: [PATCH] add rise backups --- .../rise/get_to_juvisy_rise_backups.sh | 3 ++ bash/backups/rise/mastodon_borg.sh | 36 ++++++++++++++++++ bash/backups/rise/peertube_borg.sh | 36 ++++++++++++++++++ bash/backups/rise/tksites_borg.sh | 38 +++++++++++++++++++ 4 files changed, 113 insertions(+) create mode 100644 bash/backups/rise/get_to_juvisy_rise_backups.sh create mode 100644 bash/backups/rise/mastodon_borg.sh create mode 100644 bash/backups/rise/peertube_borg.sh create mode 100644 bash/backups/rise/tksites_borg.sh diff --git a/bash/backups/rise/get_to_juvisy_rise_backups.sh b/bash/backups/rise/get_to_juvisy_rise_backups.sh new file mode 100644 index 00000000..c7ad7414 --- /dev/null +++ b/bash/backups/rise/get_to_juvisy_rise_backups.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +rsync tykayn@proxmox.coussinet.org:/poule/encrypted/* /media/tykayn/disque_usb/backup_rise/encrypted -avzP diff --git a/bash/backups/rise/mastodon_borg.sh b/bash/backups/rise/mastodon_borg.sh new file mode 100644 index 00000000..76c24f0c --- /dev/null +++ b/bash/backups/rise/mastodon_borg.sh @@ -0,0 +1,36 @@ +#!/bin/bash +# ------------- pour créer le dépot borg: +# borg init --encryption=repokey-blake2 /media/tykayn/catwoman/stockage-syncable +# ------------- ajouter dans la crontab root +# sudo crontab -e +# # lancer toutes les 4 heures le script de création borg +# 0 */4 * * * bash /home/tykayn/soyoustart_borg.sh +# +# ------------- +# config +# +today=$(date +"%Y-%m-%d_%H-%I-%S") +LOG_FILE_BACKUP=/poule/encrypted/log_backup_rise.log +BORG_FOLDER_RISE=/poule/encrypted/mastodon +MASTODON_FOLDER_RISE=/poule/subvol-102-disk-0/home/mastodon + +export BORG_PASSCOMMAND="cat /root/.borg-passphrase" +# ====================== dossiers a sauvegarder ====================== +# les bases de données sont sauvegardées avec automysqlbackup et autopostgresqlbackup +# les fichiers des sites web +# la config nginx + +NGINX_FOLDER=/etc/nginx + +echo ' ' >> $LOG_FILE_BACKUP +echo "### ${today} start backup script " | tee -a $LOG_FILE_BACKUP 2>&1 + +# ====================== creation de borg backup +echo ' ' >> $LOG_FILE_BACKUP +echo "### ${today} | SOYOUSTART | start backup script soyoustart_borg.sh " | tee -a $LOG_FILE_BACKUP 2>&1 + + borg create $BORG_FOLDER_RISE::soyoustart_{user}-{now} $MASTODON_FOLDER_RISE --exclude '.bundler/gems' --exclude 'node_modules' --exclude '/home/mastodon/live/public/system/cache/*' --stats --progress --verbose --stats --compression zlib,9 | tee -a $LOG_FILE_BACKUP 2>&1 +# ====================== nettoyage + borg prune -v --list --stats --keep-daily=6 --keep-weekly=4 --keep-monthly=3 --keep-yearly=2 /$BORG_FOLDER_SOYOUSTART | tee -a $LOG_FILE_BACKUP 2>&1 + +echo "### ${date} | SOYOUSTART | done borg_spaceship.sh " | tee -a $LOG_FILE_BACKUP 2>&1 diff --git a/bash/backups/rise/peertube_borg.sh b/bash/backups/rise/peertube_borg.sh new file mode 100644 index 00000000..f54344ab --- /dev/null +++ b/bash/backups/rise/peertube_borg.sh @@ -0,0 +1,36 @@ +#!/bin/bash +# ------------- pour créer le dépot borg: +# borg init --encryption=repokey-blake2 /media/tykayn/catwoman/stockage-syncable +# ------------- ajouter dans la crontab root +# sudo crontab -e +# # lancer toutes les 4 heures le script de création borg +# 0 */4 * * * bash /home/tykayn/soyoustart_borg.sh +# +# ------------- +# config +# +today=$(date +"%Y-%m-%d_%H-%I-%S") +LOG_FILE_BACKUP=/poule/encrypted/log_backup_rise.log +BORG_FOLDER_RISE=/poule/encrypted/peertube +PEERTUBE_FOLDER_RISE=/poule/subvol-101-disk-0/var/www/peertube + +export BORG_PASSCOMMAND="cat /root/.borg-passphrase" +# ====================== dossiers a sauvegarder ====================== +# les bases de données sont sauvegardées avec automysqlbackup et autopostgresqlbackup +# les fichiers des sites web +# la config nginx + +NGINX_FOLDER=/etc/nginx + +echo ' ' >> $LOG_FILE_BACKUP +echo "### ${today} start backup script " | tee -a $LOG_FILE_BACKUP 2>&1 + +# ====================== creation de borg backup +echo ' ' >> $LOG_FILE_BACKUP +echo "### ${today} | SOYOUSTART | start backup script soyoustart_borg.sh " | tee -a $LOG_FILE_BACKUP 2>&1 + + borg create $BORG_FOLDER_RISE::soyoustart_{user}-{now} $PEERTUBE_FOLDER_RISE --exclude '.bundler/gems' --exclude 'node_modules' --progress --verbose --stats --compression zlib,9 | tee -a $LOG_FILE_BACKUP 2>&1 +# ====================== nettoyage + borg prune -v --list --stats --keep-daily=6 --keep-weekly=4 --keep-monthly=3 --keep-yearly=2 /$BORG_FOLDER_SOYOUSTART | tee -a $LOG_FILE_BACKUP 2>&1 + +echo "### ${date} | SOYOUSTART | done borg_spaceship.sh " | tee -a $LOG_FILE_BACKUP 2>&1 diff --git a/bash/backups/rise/tksites_borg.sh b/bash/backups/rise/tksites_borg.sh new file mode 100644 index 00000000..1d3a3c5c --- /dev/null +++ b/bash/backups/rise/tksites_borg.sh @@ -0,0 +1,38 @@ +#!/bin/bash +# ------------- pour créer le dépot borg: +# borg init --encryption=repokey-blake2 /media/tykayn/catwoman/stockage-syncable +# ------------- ajouter dans la crontab root +# sudo crontab -e +# # lancer toutes les 4 heures le script de création borg +# 0 */4 * * * bash /home/tykayn/soyoustart_borg.sh +# +# ------------- +# config +# +today=$(date +"%Y-%m-%d_%H-%I-%S") +LOG_FILE_BACKUP=/poule/encrypted/log_backup_rise.log +BORG_FOLDER_RISE=/poule/encrypted/peertube +TKSITES_FOLDER_RISE=/poule/subvol-103-disk-0/home/www +NGINX_FOLDER_RISE=/poule/subvol-103-disk-0/etc/nginx +AUTOMYSQLBACKUP_FOLDER_RISE=/poule/subvol-103-disk-0/etc/automysqlbackup + +export BORG_PASSCOMMAND="cat /root/.borg-passphrase" +# ====================== dossiers a sauvegarder ====================== +# les bases de données sont sauvegardées avec automysqlbackup et autopostgresqlbackup +# les fichiers des sites web +# la config nginx + +NGINX_FOLDER=/etc/nginx + +echo ' ' >> $LOG_FILE_BACKUP +echo "### ${today} start backup script " | tee -a $LOG_FILE_BACKUP 2>&1 + +# ====================== creation de borg backup +echo ' ' >> $LOG_FILE_BACKUP +echo "### ${today} | SOYOUSTART | start backup script soyoustart_borg.sh " | tee -a $LOG_FILE_BACKUP 2>&1 + + borg create $BORG_FOLDER_RISE::soyoustart_{user}-{now} $TKSITES_FOLDER_RISE $NGINX_FOLDER_RISE $AUTOMYSQLBACKUP_FOLDER_RISE --exclude '.bundler/gems' --exclude 'node_modules' --progress --verbose --stats --compression zlib,9 | tee -a $LOG_FILE_BACKUP 2>&1 +# ====================== nettoyage + borg prune -v --list --stats --keep-daily=6 --keep-weekly=4 --keep-monthly=3 --keep-yearly=2 /$BORG_FOLDER_SOYOUSTART | tee -a $LOG_FILE_BACKUP 2>&1 + +echo "### ${date} | SOYOUSTART | done borg_spaceship.sh " | tee -a $LOG_FILE_BACKUP 2>&1