diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2021-06-15 16:56:30 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2021-06-15 16:56:30 +0200 |
commit | 36cffc7e63496b156a0b34be320b0fae44fb92ac (patch) | |
tree | 72e144189c6c9e6bf1ac16ca07a3ad07f264e28f /borg-family-0.2 | |
parent | b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8 (diff) | |
download | borg-family-36cffc7e63496b156a0b34be320b0fae44fb92ac.tar.gz borg-family-36cffc7e63496b156a0b34be320b0fae44fb92ac.tar.bz2 borg-family-36cffc7e63496b156a0b34be320b0fae44fb92ac.zip |
Diffstat (limited to 'borg-family-0.2')
-rwxr-xr-x | borg-family-0.2/src/sbin/bfenv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/borg-family-0.2/src/sbin/bfenv b/borg-family-0.2/src/sbin/bfenv index 756ef62..974152d 100755 --- a/borg-family-0.2/src/sbin/bfenv +++ b/borg-family-0.2/src/sbin/bfenv @@ -21,7 +21,7 @@ fi borg init "${borg_init_opts[@]}" 2>&1 | grep -vE '^A repository already exists' >&2 -if ! borg check "${borg_check_opts[@]}"; then +if ! borg list > /dev/null; then echo "Showing BORG_* env variables (see /etc/borg-family/envvars) :" >&2 env | grep ^BORG_ >&2 echo "End of BORG_* env variables" >&2 |