Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(audit-log): space left values should be digits #6

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions roles/cis_security/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ log_port: 514 # Linux: Port to listen to RSYSLOG messages on (if log_host is tru
auditd_max_log_file_size: 8 # Linux: log file size. RHEL default is 8MB, control has no default
auditd_num_logs: 5 # Linux: number of logs to keep. RHEL default is 5, control has no default
auditd_max_log_file_action: keep_logs # Linux: action to take when auditd log file is full. RHEL default is keep_logs
auditd_space_left_disk_size: "75%" # Linux: RHEL default is 75%
auditd_space_left_disk_size: 1000 # Default 1GB
auditd_space_left_action: syslog # Linux: RHEL default is syslog
auditd_admin_left_disk_size: "50%" # Linux: RHEL default is 50%
auditd_admin_left_disk_size: 500 # Defautl to 500 MB
auditd_admin_space_left_action: rotate # Linux: RHEL default is rotate
auditd_action_mail_acct: root # Linux: RHEL default is root

Expand Down