Skip to content

Commit 72ceff3

Browse files
committed
Following smortex's suggestions
1 parent b085de6 commit 72ceff3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

manifests/mod/security.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# Defines the type of audit logging mechanism to be used.
3535
#
3636
# @param audit_log_format
37-
# Defines what format the logs should be written in. Accepts `Native` and `JSON`.
37+
# Defines what format the logs should be written in.
3838
#
3939
# @param audit_log_storage_dir
4040
# Defines the directory where concurrent audit log entries are to be stored. This directive is only needed when concurrent audit logging is used.
@@ -146,7 +146,7 @@
146146
String $audit_log_relevant_status = '^(?:5|4(?!04))',
147147
String $audit_log_parts = $apache::params::modsec_audit_log_parts,
148148
String $audit_log_type = $apache::params::modsec_audit_log_type,
149-
Enum['Native', 'JSON'] $audit_log_format = $apache::params::modsec_audit_log_format,
149+
Enum['Native', 'JSON'] $audit_log_format = 'Native',
150150
Optional[Stdlib::Absolutepath] $audit_log_storage_dir = undef,
151151
Integer $secpcrematchlimit = $apache::params::secpcrematchlimit,
152152
Integer $secpcrematchlimitrecursion = $apache::params::secpcrematchlimitrecursion,

manifests/params.pp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636

3737
$modsec_audit_log_parts = 'ABIJDEFHZ'
3838
$modsec_audit_log_type = 'Serial'
39-
$modsec_audit_log_format = 'Native'
4039
$modsec_custom_rules = false
4140
$modsec_custom_rules_set = undef
4241

0 commit comments

Comments
 (0)