diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2021-06-15 16:45:20 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2021-06-15 16:45:20 +0200 |
commit | b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8 (patch) | |
tree | daa3ef109d6f0b1dd7884622a2b2fba8c10e32cb /borg-family-0.1/src/etc | |
parent | 1ada10f44e2baf28823156c006c82a076c52f530 (diff) | |
download | borg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.tar.gz borg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.tar.bz2 borg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.zip |
borg-family_0.2-1
Diffstat (limited to 'borg-family-0.1/src/etc')
-rwxr-xr-x | borg-family-0.1/src/etc/bfhooks | 27 | ||||
-rw-r--r-- | borg-family-0.1/src/etc/confvars | 5 | ||||
-rw-r--r-- | borg-family-0.1/src/etc/excludes.d/home | 4 | ||||
-rw-r--r-- | borg-family-0.1/src/etc/excludes.d/rootfs | 5 |
4 files changed, 0 insertions, 41 deletions
diff --git a/borg-family-0.1/src/etc/bfhooks b/borg-family-0.1/src/etc/bfhooks deleted file mode 100755 index 5b6b204..0000000 --- a/borg-family-0.1/src/etc/bfhooks +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash -e -mount_bind_rootfs() { - if ! mount | grep -q /rootfs; then - mkdir -p /rootfs - mount --bind / /rootfs - fi -} - -umount_bind_rootfs() { - if mount | grep -q /rootfs; then - umount /rootfs || lsof -n | grep /rootfs - rmdir /rootfs - fi -} - -case $1 in - before) - case $2 in - rootfs) apt-get clean || true; mount_bind_rootfs;; - esac - ;; - after) - case $2 in - rootfs) umount_bind_rootfs ;; - esac - ;; -esac diff --git a/borg-family-0.1/src/etc/confvars b/borg-family-0.1/src/etc/confvars deleted file mode 100644 index f737648..0000000 --- a/borg-family-0.1/src/etc/confvars +++ /dev/null @@ -1,5 +0,0 @@ -# This file is used by bfenv and bfrun (bash scripts) -borg_init_opts=( -e repokey-blake2 --make-parent-dirs -v ) -borg_check_opts=( --last $((1+$(bfwhat | wc -l) )) -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.1/src/etc/excludes.d/home b/borg-family-0.1/src/etc/excludes.d/home deleted file mode 100644 index c7aead3..0000000 --- a/borg-family-0.1/src/etc/excludes.d/home +++ /dev/null @@ -1,4 +0,0 @@ -**/.cache/* -/home/*/.mozilla/**/datareporting -/home/*/.thunderbird/**/global-messages-db.sqlite -/home/*/.thunderbird/**/ImapMail diff --git a/borg-family-0.1/src/etc/excludes.d/rootfs b/borg-family-0.1/src/etc/excludes.d/rootfs deleted file mode 100644 index b61797b..0000000 --- a/borg-family-0.1/src/etc/excludes.d/rootfs +++ /dev/null @@ -1,5 +0,0 @@ -/rootfs/var/cache/apt/* -**/.cache/* -/rootfs/home/*/.mozilla/**/datareporting -/rootfs/home/*/.thunderbird/**/global-messages-db.sqlite -/rootfs/home/*/.thunderbird/**/ImapMail |