-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlog-clean.sh
More file actions
executable file
·56 lines (47 loc) · 1.44 KB
/
log-clean.sh
File metadata and controls
executable file
·56 lines (47 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
# Monthly Log File Removal Script
# Author: V. Alex Brennen <vab@cryptnet.net>
# Copyright: None
# License: Public Domain
# Date: 2014-03-18
# Description: This script will take a directory as an argument. It will then
# remove all log files more than two months old (with an ISO
# standard date (YYYY-MM-DD) as part of their name) from the
# directory. This script was meant to be called by cron monthly.
# Here is an example crontab entry that runs the script on the
# first day of the month:
# 0 0 1 * * /usr/local/scripts/log_clean.sh /var/log/svc_logs 2>&1 >> /dev/null
# Test for a server list file argument
if [ -z "$1" ]; then
echo "Usage: $0 <directory>";
exit
fi
# Make sure the directory is valid and readable
if [ ! -d "$1" ]; then
echo "Error: Argument does not appear to be a directory: $1."
exit
fi
# Get the date information that we'll use to determine which log
# files to remove
YEAR="$(/bin/date +"%Y")"
MONTH="$(/bin/date +"%m")"
# To remove log files from two months ago we subtract two from
# the current month. If the month is January or February, we
# set it and roll the year back.
if [ "$MONTH" -lt 3 ]; then
if [ "$MONTH" -eq 2 ]; then
MONTH=12;
else
MONTH=11;
fi
YEAR=$YEAR--
else
MONTH=$MONTH-2
fi
# This code add a leading zero to the month to comply with ISO
# date format standard.
if [ "$MONTH" -lt 10 ]; then
MONTH="0$MONTH";
fi
# Remove the old log files
eval "/bin/rm $1/*$YEAR-$MONTH*"