add script to archive log files into timestamped subdirectory

This commit is contained in:
2026-04-20 22:43:52 +02:00
parent 6e8eb58c97
commit f8c50c6e63

24
archiveLogs.sh Normal file
View File

@@ -0,0 +1,24 @@
#!/bin/sh
# Archive log files from the logs directory into a timestamped subdirectory, then delete them.
LOGS_DIR=/conf/logs
ARCHIVE_DIR=$LOGS_DIR/archive
TIMESTAMP=$(date +"%Y%m%d_%H%M%S")
DEST=$ARCHIVE_DIR/$TIMESTAMP
# Find log files directly in the logs directory (non-recursive, skip archive subdir)
LOG_FILES=$(find "$LOGS_DIR" -maxdepth 1 -type f -name "*.log")
if [ -z "$LOG_FILES" ]; then
echo "[archiveLogs] No log files to archive."
exit 0
fi
mkdir -p "$DEST"
for f in $LOG_FILES; do
mv "$f" "$DEST/"
done
echo "[archiveLogs] Archived logs to $DEST"