From d786fa2790ec327e5e899b3ae03ee941be3e44d4 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Tue, 11 Oct 2022 08:19:51 -0400 Subject: [PATCH] Hide apt output when installing duplicity --- tests/bin/restore_backup.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/bin/restore_backup.sh b/tests/bin/restore_backup.sh index 305e31c8..e797f367 100755 --- a/tests/bin/restore_backup.sh +++ b/tests/bin/restore_backup.sh @@ -65,7 +65,16 @@ echo "Shutting down services" ehdd/shutdown.sh || exit 1 if [ ! -x /usr/bin/duplicity ]; then - apt-get install -y -qq duplicity + echo "Installing duplicity" + tmpf=$(mktemp) + apt-get install -y duplicity &> "$tmpf" + if [ $? -ne 0 ]; then + echo "Failed: " 1>&2 + cat "$tmpf" 1>&2 + rm -f "$tmpf" + exit 1 + fi + rm -f "$tmpf" fi # Ensure users and groups are created so that duplicity properly