Initial version of apache::logrotate class.

This commit is contained in:
Timo Mkinen 2009-10-28 00:35:33 +02:00
parent d82884fc87
commit 4621dcf24a
2 changed files with 102 additions and 0 deletions

78
apache/files/www-logrotate.sh Executable file
View file

@ -0,0 +1,78 @@
#!/bin/bash
# Copyright (c) 2005 Marko Laakso in adm@ee.oulu.fi role
# All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# $Id: dologs.sh,v 1.8 2008/09/12 11:07:57 fenris Exp $
umask 022
SUFFIX=`date +%Y%m%d-%H%M`
if [ -x /usr/sbin/lsof ]; then
LSOF=/usr/sbin/lsof
else
LSOF=lsof
fi
[ -r /var/run/httpd.pid ] && HTTPDPID=`cat /var/run/httpd.pid`
[ -r /var/run/httpsd.pid ] && HTTPSDPID=`cat /var/run/httpsd.pid`
signalapache() {
pid=$1
kill -CONT $pid 1> /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "no such apache [$pid] before signal - manual start req" 1>&2
exit 1
fi
kill -HUP $pid 1> /dev/null 2>&1
sleep 1
kill -CONT $pid 1> /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "no such apache [$pid] after signal - manual start req" 1>&2
exit 1
fi
}
for pid in ${HTTPDPID} ${HTTPSDPID}; do
for log in `${LSOF} -p ${pid} | grep /www/log | \
awk '{ print $9 }' | sort | uniq`; do
[ -f ${log} ] || continue
mv $log ${log}.${SUFFIX}
mylogs="${mylogs} ${log}.${SUFFIX}"
done
done
[ -z "${HTTPDPID}" ] || signalapache ${HTTPDPID}
[ -z "${HTTPSDPID}" ] || signalapache ${HTTPSDPID}
for log in ${mylogs}; do
gzip $log
done

24
apache/manifests/init.pp Normal file
View file

@ -0,0 +1,24 @@
# Install www logrotate script and cron job.
#
class apache::logrotate {
file { "/usr/local/sbin/www-logrotate.sh":
ensure => present,
source => "puppet:///apache/www-logrotate.sh",
mode => 0755,
owner => root,
group => root,
}
cron { "www-logrotate":
ensure => present,
command => "/usr/local/sbin/www-logrotate.sh",
user => "root",
hour => "0",
minute => "0",
weekday => "1",
require => File["/usr/local/sbin/www-logrotate.sh"],
}
}