summaryrefslogtreecommitdiff
path: root/examples/prune_dserver_logs.sh.example
blob: 56a68cd873d6dd6e7b7a7eea107e8fbdc94f8e7b (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

declare -r LOGDIR=/var/run/dserver/log

if [ ! -d "$LOGDIR" ]; then
	exit 0
fi

# Daily rotated logs: YYYYMMDD.log — remove files not modified in the last 7 days.
/usr/bin/find "$LOGDIR" -type f -name '*.log' -mtime +7 -delete