summaryrefslogtreecommitdiff
path: root/borg-family-0.1/src/sbin/bfwhat
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2021-06-15 16:45:20 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2021-06-15 16:45:20 +0200
commitb9601cf46a75b373f6b6b902d7ac2be38ab2ffe8 (patch)
treedaa3ef109d6f0b1dd7884622a2b2fba8c10e32cb /borg-family-0.1/src/sbin/bfwhat
parent1ada10f44e2baf28823156c006c82a076c52f530 (diff)
downloadborg-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/sbin/bfwhat')
-rwxr-xr-xborg-family-0.1/src/sbin/bfwhat24
1 files changed, 0 insertions, 24 deletions
diff --git a/borg-family-0.1/src/sbin/bfwhat b/borg-family-0.1/src/sbin/bfwhat
deleted file mode 100755
index bf9cf4d..0000000
--- a/borg-family-0.1/src/sbin/bfwhat
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-what-from-proc-mounts() {
- # Special case for "/", show it as /rootfs (see hook_* files). Helps saving initial /dev nodes files behind udev
- awk '( $2 == "/" ) { print "/rootfs",$1 }' /proc/mounts
-
- # Backup all non "/", non-removable, mounted filesystems which device is also shown in /sys/block
- tmp=$(mktemp)
- grep 0 /sys/block/*/removable | sed -e 's#^/sys/block#^/dev#' -e 's#/removable:0$##' >> "$tmp"
- grep -Ef "$tmp" /proc/mounts | awk '( $2 !~ /^\/(rootfs|$)/ ) { print $2,$1 }'
- rm -- "$tmp"
-}
-
-if [ -r /etc/borg-family/what.override ]; then
- cat /etc/borg-family/what.override
-else
- if [ -r /etc/borg-family/what.include ]; then
- cat /etc/borg-family/what.include
- fi
- if [ -r /etc/borg-family/what.exclude ]; then
- what-from-proc-mounts | grep -vEf /etc/borg-family/what.exclude
- else
- what-from-proc-mounts
- fi
-fi