From 8fbb24bee9e93bf7bf2afb5baa3f3897277611b3 Mon Sep 17 00:00:00 2001 From: Patrick Asmus Date: Sat, 28 Oct 2023 10:25:39 +0000 Subject: [PATCH] 2.1.5 | Logging optimiert --- weekly-update.v2.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/weekly-update.v2.sh b/weekly-update.v2.sh index 393878d..1a4f0ec 100644 --- a/weekly-update.v2.sh +++ b/weekly-update.v2.sh @@ -5,8 +5,8 @@ # Autor: Patrick Asmus # Web: https://www.media-techport.de # Git-Reposit.: https://git.media-techport.de/scriptos/weekly-updater.git -# Version: 2.1.4 -# Datum: 13.10.2023 +# Version: 2.1.5 +# Datum: 28.10.2023 # Modifikation: Logging optimiert ##################################################### @@ -18,9 +18,9 @@ LOGDIR=/var/log/script-logs # Logging aktivieren mkdir -p $LOGDIR -exec &> $LOGDIR/$SCRIPT_NAME.log +exec &> >(tee -a "$LOGDIR/$SCRIPT_NAME.log") -# Aktualisiere das System und speichere die Ausgabe in eine Log-Datei +# Aktualisiere das System sudo apt update && sudo apt upgrade -y # Überprüfe, ob das Update erfolgreich war