Version information
This version is compatible with:
- Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x
- Puppet >= 6.21.0 < 8.0.0
- , ,
Start using this module
Add this module to your Puppetfile:
mod 'ubeek-auditd', '1.0.3'
Learn more about managing modules with a PuppetfileDocumentation
Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with auditd
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
- Acknowledgements
Overview
This module will install a basic template for auditd rules.
Module Description
This module edits the default /etc/audit/auditd.conf, adds a /etc/audit/rules.d/audit.rules file to the server and restarts auditd.
Setup
If you wish to use your own ruleset, it must be passed to the auditd
classes $auditd_rules parameter as an array of rules.
This ruleset will over-write the default rules, so must be the full ruleset you intend to implement. E.g.:
class {'auditd':
auditd_rules => [
'-a always,exit -F arch=b32 -S adjtimex -S settimeofday -k time-change',
'-w /etc/passwd -p wa -k identity',
],
}
Config values for the auditd.conf
file can be passed in as a hash to the $auditd_conf parameter, where the key is the setting name and the value is the value.
This will not completely over-write the default ruleset, only add new settings to the default list, or override values for existing settings.
The default list can be found in the in-module Hiera data.
E.g.
class {'auditd':
auditd_conf => {
'log_file' => '/var/log/some-other-auditd.log',
}
}
What auditd affects
- /etc/audit/auditd.conf
- /etc/audit/rules.d/audit.rules
- RPM Package audit will be installed
- Service auditd will be turned on and started
Beginning with auditd
Install module with sudo puppet module install auditd
or use r10k.
Usage
Use the following syntax to get this module working:
include auditd
or
class { 'auditd': }
Reference
Classes
Public Classes
auditd
: Installs and configures auditd on your server.
Private Classes
auditd::config
: Configures the module.auditd::install
: Installs auditd package on your server.auditd::service
: Configures auditd service.
Limitations
This module has only been tested on RedHat,CentOS and it derivatives. All other distributions are not supported.
Development
This module is public and can be found on githubhere
Acknowledgements
This module is based upon the auditd module by Luther Barnum, which can be found at https://github.com/lgbarn/auditd.
Changelog
1.0.3
- Fixed Exec['augenrules'] to be a string command
1.0.2
- Changed functionality to use augenrules binary and place configs in /etc/audit/rules.d/ instead of /etc/audit/audit.rules
1.0.1
- Changed name of some parameters to be consistent with others.
- Added further class documentation
1.0.0
- Initial release
Dependencies
- puppetlabs-stdlib (>= 3.2.0 < 7.0.0)