Skip to content
Snippets Groups Projects
Verified Commit 8a6dc6bf authored by Adam Lewenberg's avatar Adam Lewenberg
Browse files

move filtersyslog to its own base: class

parent 64c24066
No related branches found
No related tags found
No related merge requests found
release/005.007 (unreleased)
[newsyslog] Pull out filter-syslog from newsyslog so filtersyslog can
be used separately from newsyslog. [adamhl]
[ssh] Change the method by which we specify a list of sunetids too
filter via filter-syslog. If you install this version of base you will
need to add to hiera the list of sunetids whose authentication failure
......
# Install filter-syslog, which we use for auditing system logs, and its
# basic configuration.
class base::filtersyslog {
# Install the filter-syslog package.
package { 'filter-syslog':
ensure => present
}
# Install the default filter-syslog configuration.
file {
'/etc/filter-syslog.conf':
source => 'puppet:///modules/base/filtersyslog/etc/filter-syslog.conf';
'/etc/filter-syslog':
ensure => directory,
recurse => true,
purge => true,
}
}
......@@ -4,9 +4,12 @@
# logs, and its basic configuration.
class base::newsyslog {
package {
'filter-syslog': ensure => present;
'newsyslog': ensure => present;
# Install the basic filter-syslog system
include base::filtersyslog
package {'newsyslog':
ensure => present;
}
# Disable logrotate, since otherwise it will fight with newsyslog. We could
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment