From 85bc52de5641d04b9825eb8a214f0d62f53e715c Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 24 Feb 2020 23:24:08 +0100 Subject: [PATCH] bup-save-user: Use --one-file-system This makes sense for user data, not the file system (or snapshot!) itself is interesting, only the path is. --- bup/save-user/bup-save-user | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bup/save-user/bup-save-user b/bup/save-user/bup-save-user index aea3386..c0e0a0d 100755 --- a/bup/save-user/bup-save-user +++ b/bup/save-user/bup-save-user @@ -1,7 +1,7 @@ #!/bin/sh # # bup-save-user -- Save user data using bup(1) -# Copyright (c)2013-2016 Alexander Barton (alex@barton.de) +# Copyright (c)2013-2020 Alexander Barton (alex@barton.de) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -32,7 +32,7 @@ paths="$HOME" set -x -bup index --update --xdev --exclude-rx="/.cache/." $paths || exit 1 +bup index --one-file-system --no-check-device --exclude-rx="/.cache/." $paths || exit 1 bup save --name "$LOGNAME" $paths exit_code=$? -- 2.39.2