blob: 99f7139f4a9cc4504436bc7f16add34eb0c38e36 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# To consult or restore backups, just load this file in a root shell environnement variables with:
# source /etc/borg-family/envvars
# Then use commands like:
# borg list
# mkdir /mnt/restore
# borg mount ::somehostname-rootfs-2020-08-15 /mnt/restore
# cp -ai /mnt/restore/rootfs/etc/veryimportantfile /etc/
export BORG_RSH="ssh -i /etc/borg-family/id_rsa_borg"
export BORG_PASSCOMMAND="cat /etc/borg-family/passphrase"
export BORG_REPO="ssh://user@host:port/path/to/repo"
|