Skip to content

Commit

Permalink
Following smortex's suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamerz committed Jan 5, 2025
1 parent b085de6 commit 72ceff3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions manifests/mod/security.pp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# Defines the type of audit logging mechanism to be used.
#
# @param audit_log_format
# Defines what format the logs should be written in. Accepts `Native` and `JSON`.
# Defines what format the logs should be written in.
#
# @param audit_log_storage_dir
# Defines the directory where concurrent audit log entries are to be stored. This directive is only needed when concurrent audit logging is used.
Expand Down Expand Up @@ -146,7 +146,7 @@
String $audit_log_relevant_status = '^(?:5|4(?!04))',
String $audit_log_parts = $apache::params::modsec_audit_log_parts,
String $audit_log_type = $apache::params::modsec_audit_log_type,
Enum['Native', 'JSON'] $audit_log_format = $apache::params::modsec_audit_log_format,
Enum['Native', 'JSON'] $audit_log_format = 'Native',
Optional[Stdlib::Absolutepath] $audit_log_storage_dir = undef,
Integer $secpcrematchlimit = $apache::params::secpcrematchlimit,
Integer $secpcrematchlimitrecursion = $apache::params::secpcrematchlimitrecursion,
Expand Down
1 change: 0 additions & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@

$modsec_audit_log_parts = 'ABIJDEFHZ'
$modsec_audit_log_type = 'Serial'
$modsec_audit_log_format = 'Native'
$modsec_custom_rules = false
$modsec_custom_rules_set = undef

Expand Down

0 comments on commit 72ceff3

Please sign in to comment.