From f6e9fd628c5c7be39704ec701205fdc7c3511429 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Thu, 22 Sep 2022 11:08:02 -0400 Subject: [PATCH] Hide the output from apt-get unless an error occurs --- .../connect-nextcloud-to-miab.sh | 31 ++++++++++++++++--- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/setup/mods.available/connect-nextcloud-to-miab.sh b/setup/mods.available/connect-nextcloud-to-miab.sh index 56ce45f0..52998f59 100755 --- a/setup/mods.available/connect-nextcloud-to-miab.sh +++ b/setup/mods.available/connect-nextcloud-to-miab.sh @@ -54,6 +54,29 @@ die_with_code() { exit $code } +exec_no_output() { + # This function hides the output of a command unless the command + # fails + local of=$(mktemp) + "$@" &> "$of" + local code=$? + + if [ $code -ne 0 ]; then + echo "" 1>&2 + echo "FAILED: $@" 1>&2 + echo "-----------------------------------------" 1>&2 + echo "Return code: $code" 1>&2 + echo "Output:" 1>&2 + cat "$of" 1>&2 + echo "-----------------------------------------" 1>&2 + fi + + # Remove temporary file. + rm -f "$of" + [ $code -ne 0 ] && return 1 + return 0 +} + usage() { cat <