forked from vab/sysadmin-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog_compress.sh
More file actions
executable file
·70 lines (56 loc) · 1.69 KB
/
log_compress.sh
File metadata and controls
executable file
·70 lines (56 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/bash
# Monthly Log File Compression Script
# Author: V. Alex Brennen <vab@mit.edu>
# License: This script is public domain
# Date: 2014-03-20
# Description: This script will take a directory as an argument.
# It will then compress all log files from the previous month (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_compress.sh /var/log/svc 2>&1 >> /dev/null
# The location of bzip2 (or other compression program)
BZIP2=/usr/bin/bzip2
# The location of nice
NICE=/bin/nice
# The argument to specify a compression level if required
CLVL="-9"
# Use nice
BE_NICE=1
# Nice level
NLVL=19
# 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 compress
YEAR="$(/bin/date +"%Y")"
MONTH="$(/bin/date +"%m")"
# To compress log files from one month ago we subtract one from
# the current month. If the month is January, we set it to
# December and roll the year back.
if [ $MONTH -eq 1 ]; then
MONTH = 12;
YEAR =$(( $YEAR-- ))
else
MONTH=$(( $MONTH-1 ))
fi
# This code adds a leading zero to the month to comply with ISO
# date format standard.
if [ $MONTH -lt 10 ]; then
MONTH="0$MONTH";
fi
# Compress the old log files
if [ $BE_NICE -eq 1 ]; then
$NICE -$NLVL $BZIP2 $CLVL $1/*$YEAR-$MONTH*
else
$BZIP2 $CLVL $1/*$YEAR-$MONTH*
fi