18 lines
364 B
Bash
18 lines
364 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Path to the auditd configuration file
|
|
AUDITD_CONF="/etc/audit/auditd.conf"
|
|
|
|
# Check if the file exists
|
|
if [[ -f "$AUDITD_CONF" ]]; then
|
|
# Use grep to search for the pattern
|
|
if grep -qE "^max_log_file[[:space:]]*=[[:space:]]*[0-9]+" "$AUDITD_CONF"; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "File $AUDITD_CONF does not exist."
|
|
exit 1
|
|
fi
|