Skip to content

Commit

Permalink
(SIMP-8235) incremental_async as possible value for parameter flush (#…
Browse files Browse the repository at this point in the history
…124)

auditd in RHEL7 has incremental_async as new possible value for the
flush parameter

SIMP-8235 #close

Co-authored-by: marcel <[email protected]>
Co-authored-by: Chris Tessmer <[email protected]>
  • Loading branch information
3 people authored Aug 7, 2020
1 parent 7284142 commit 7f69181
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .puppet-lint.rc
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
--no-140chars-check
--no-trailing_comma-check
--no-empty_string_assignment-check
# This is here because the code can't handle lookups in parameters and we have
# a LOT of those
--no-parameter_order-check
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Fri Aug 07 2020 Marcel Fischer <[email protected]> - 8.5.3-0
- Add `INCREMENTAL_ASYNC` to possible values for `$::auditd::flush`

* Tue Aug 04 2020 Trevor Vaughan <[email protected]> - 8.5.2-0
- Ensure that facts are properly confined
- Utilize the new simplib__auditd fact
Expand Down
2 changes: 1 addition & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2228,7 +2228,7 @@ Alias of `Enum['IGNORE', 'SYSLOG', 'ROTATE', 'EXEC', 'SUSPEND', 'SINGLE', 'HALT'

Matches actions flush in auditd.conf

Alias of `Enum['NONE', 'INCREMENTAL', 'DATA', 'SYNC', 'none', 'incremental', 'data', 'sync']`
Alias of `Enum['NONE', 'INCREMENTAL', 'DATA', 'SYNC', 'INCREMENTAL_ASYNC', 'none', 'incremental', 'data', 'sync', 'incremental_async']`

### `Auditd::LogFacility`

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simp-auditd",
"version": "8.5.2",
"version": "8.5.3",
"author": "SIMP Team",
"summary": "A SIMP puppet module for managing auditd and audispd",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion types/flush.pp
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Matches actions flush in auditd.conf
type Auditd::Flush = Enum['NONE','INCREMENTAL','DATA','SYNC','none','incremental','data','sync']
type Auditd::Flush = Enum['NONE','INCREMENTAL','DATA','SYNC','INCREMENTAL_ASYNC','none','incremental','data','sync','incremental_async']

0 comments on commit 7f69181

Please sign in to comment.