From b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Tue, 15 Jun 2021 16:45:20 +0200 Subject: borg-family_0.2-1 --- borg-family-0.2/src/etc/bfhooks | 43 +++++++++++++++++++++++++++++++ borg-family-0.2/src/etc/confvars | 4 +++ borg-family-0.2/src/etc/excludes.d/home | 4 +++ borg-family-0.2/src/etc/excludes.d/rootfs | 5 ++++ 4 files changed, 56 insertions(+) create mode 100755 borg-family-0.2/src/etc/bfhooks create mode 100644 borg-family-0.2/src/etc/confvars create mode 100644 borg-family-0.2/src/etc/excludes.d/home create mode 100644 borg-family-0.2/src/etc/excludes.d/rootfs (limited to 'borg-family-0.2/src/etc') diff --git a/borg-family-0.2/src/etc/bfhooks b/borg-family-0.2/src/etc/bfhooks new file mode 100755 index 0000000..c7ce378 --- /dev/null +++ b/borg-family-0.2/src/etc/bfhooks @@ -0,0 +1,43 @@ +#!/bin/bash -e +mount_bind_rootfs() { + if ! mount | grep -q /rootfs; then + mkdir -p /rootfs + mount --bind / /rootfs + fi +} + +mount_efi() { + if ! mount | grep -q /boot/efi; then + mount /boot/efi + fi +} + +umount_bind_rootfs() { + if mount | grep -q /rootfs; then + umount /rootfs || lsof -n | grep /rootfs + rmdir /rootfs + fi +} + +umount_efi() { + if mount | grep -q /boot/efi; then + umount /boot/efi || lsof -n | grep /boot/efi + fi +} + +case $1 in + before) + echo "Start of backup: $2 to $BORG_REPO" + case $2 in + rootfs) apt-get clean || true; mount_bind_rootfs;; + boot-efi) mount_efi ;; + esac + ;; + after) + case $2 in + rootfs) umount_bind_rootfs ;; + boot-efi) umount_efi ;; + esac + echo "End of backup: $2 to $BORG_REPO" + ;; +esac diff --git a/borg-family-0.2/src/etc/confvars b/borg-family-0.2/src/etc/confvars new file mode 100644 index 0000000..4737195 --- /dev/null +++ b/borg-family-0.2/src/etc/confvars @@ -0,0 +1,4 @@ +# This file is used by bfenv and bfrun (bash scripts) +borg_init_opts=( -e repokey-blake2 --make-parent-dirs -v ) +borg_create_opts=( --one-file-system --compression zstd --exclude-caches --exclude-if-present=NOBACKUPDIR.TAG --keep-exclude-tags --list --filter=AMEi-x --stats --show-rc -v ) +quiet=0 diff --git a/borg-family-0.2/src/etc/excludes.d/home b/borg-family-0.2/src/etc/excludes.d/home new file mode 100644 index 0000000..c7aead3 --- /dev/null +++ b/borg-family-0.2/src/etc/excludes.d/home @@ -0,0 +1,4 @@ +**/.cache/* +/home/*/.mozilla/**/datareporting +/home/*/.thunderbird/**/global-messages-db.sqlite +/home/*/.thunderbird/**/ImapMail diff --git a/borg-family-0.2/src/etc/excludes.d/rootfs b/borg-family-0.2/src/etc/excludes.d/rootfs new file mode 100644 index 0000000..b61797b --- /dev/null +++ b/borg-family-0.2/src/etc/excludes.d/rootfs @@ -0,0 +1,5 @@ +/rootfs/var/cache/apt/* +**/.cache/* +/rootfs/home/*/.mozilla/**/datareporting +/rootfs/home/*/.thunderbird/**/global-messages-db.sqlite +/rootfs/home/*/.thunderbird/**/ImapMail -- cgit v1.2.3