From 45068d512ceabfaa7d05576c9cadee71b8c617a2 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 12 Mar 2022 03:17:46 +0100 Subject: [PATCH] tee append --- deployment/bare_metal/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/bare_metal/start.sh b/deployment/bare_metal/start.sh index 99b2c2947..6030899f0 100755 --- a/deployment/bare_metal/start.sh +++ b/deployment/bare_metal/start.sh @@ -50,7 +50,7 @@ TODAY=$(date +"%Y-%m-%d") # redirect all output of the script to the UPDATE_HTML and also have things on console # TODO: this might pose a security risk -exec > >>(tee $UPDATE_HTML) 2>&1 +exec > >(tee -a $UPDATE_HTML) 2>&1 # configure nginx for the update-page echo 'Configuring nginx to serve the update-page' >> $UPDATE_HTML