2.1.5 | Logging optimiert

This commit is contained in:
Patrick Asmus 2023-10-28 10:25:39 +00:00
parent 68b45114c0
commit 8fbb24bee9

View File

@ -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