Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implements apache2::log_perms class. #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions modules/apache2/manifests/log_perms.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# == Class: apache2::log_perms
#
# Manages permissions on apache log directory and the logfiles.
# Ubuntu / Debian specific.
#
# === Details
#
# Existing logfiles get changed only if the /var/log/apache2 gets changed
# by puppet - very likely on the first run, but only if the dir's group/mode
# change is needded (refreshonly).
# All new logfiles get created from /etc/logrotate.d/apache2, which this
# submodule takes ownership of (setting the passed mode and group in it).
#
# === Variables
#
# [*log_group*]
# Desired group for /var/log/apache2 directory (and the logfiles in it).
# Default 'adm' (ubuntu default).
#
# [*logdir_mode*]
# Desired mode for /var/log/apache2 directory. Default '0750' (ubuntu default).
#
# [*logfiles_mode*]
# Desired mode of the logfiles. Default '0644'.
#
# === Examples
#
# class { 'apache2::log_perms':
# logdir_mode => '0755',
# logfiles_mode => '0644',
# }
#
# === Authors
#
# Marji Cermak <[email protected]>
#
class apache2::log_perms (
$log_group = 'adm',
$logdir_mode = '0750',
$logfiles_mode = '0644',
) {

require apache2

file { '/var/log/apache2':
ensure => directory,
mode => $logdir_mode,
group => $log_group,
require => Package['apache2'],
}
exec { 'logfiles-perms':
command => "find /var/log/apache2 -type f -exec chmod ${logfiles_mode} {} \; -exec chgr ${log_group} {} \;",
subscribe => File['/var/log/apache2'],
refreshonly => true,
}

file { '/etc/logrotate.d/apache2' :
ensure => present,
owner => 'root',
group => 'root',
mode => '0444',
content => template('apache2/logrotate-apache2.erb'),
require => Package['apache2'],
}

}
18 changes: 18 additions & 0 deletions modules/apache2/templates/logrotate-apache2.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/var/log/apache2/*.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
create <%= @logfiles_mode %> root <%= @log_group %>
sharedscripts
postrotate
/etc/init.d/apache2 reload > /dev/null
endscript
prerotate
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi; \
endscript
}