mcst-linux-kernel/patches-2024.06.26/apache-tomcat-9.0.45/files/debian/tomcat9.cron.daily

27 lines
538 B
Bash

#!/bin/sh
NAME=tomcat9
DEFAULT=/etc/default/$NAME
LOGEXT="log txt"
# The following variables can be overwritten in $DEFAULT
# Whether to compress logfiles older than today's
LOGFILE_COMPRESS=1
# Overwrite settings from default file
if [ -f "$DEFAULT" ]; then
. "$DEFAULT"
fi
if [ -d /var/log/$NAME ]; then
for EXT in $LOGEXT; do
# Compress the log files
if [ $LOGFILE_COMPRESS = 1 ]; then
find /var/log/$NAME/ -name \*.$EXT -daystart -mtime +0 -print0 \
| xargs --no-run-if-empty -0 gzip -9
EXT=$EXT.gz
fi
done
fi