sauvegardes/Plan Borg/bin/dobackups

53 lines
965 B
Plaintext
Raw Normal View History

2023-01-16 19:44:21 +01:00
#!/bin/bash
BINDIR=$(dirname "$0")
echo $BINDIR
echo "================================================================================"
echo " Sauvegardes du "$(date)
echo "================================================================================"
2023-01-17 18:15:43 +01:00
chmod -R borg.borg /var/backups/borg/*.repo
2023-01-16 19:44:21 +01:00
# Local machine.
${BINDIR}/dobackup-local
# Main machines.
# aunt
# mother
# Routers.
# leparc
# fontainebleau
# gisors
# Virtual machines.
# audio
# audio.chalec.org
# ctrlv.chalec.org
# dns
# forge.chalec.org
# gestion.a-lec.org
# git
# isengard.libre-en-communs.org
# libreverse.chalec.org
# mail
# nuage.chalec.org
# pad.chalec.org
# petition.chalec.org
# stats.chalec.org
2023-01-17 18:15:43 +01:00
${BINDIR}/dobackup-remote status.chalec.org
2023-01-16 19:44:21 +01:00
# toot
# toot.chalec.org
# video.chalec.org
# visio.chalec.org
# www
# www.chalec.org
# xmpp
# xmpp.chalec.org
echo "====="
echo "Ended at: "`date`
echo "================================================================================"