We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi. An asterisk is missing for the contents of /etc/security/limits.d/cis.conf.
CURRENTLY:
- name: 1.6.1 Ensure core dumps are restricted (Scored) - create config core dump lineinfile: dest: /etc/security/limits.d/cis.conf line: "hard core 0" state: present owner: root group: root mode: 0644 create: true when: - hard_core.rc != 0
CORRECT:
- name: 1.6.1 Ensure core dumps are restricted (Scored) - create config core dump lineinfile: dest: /etc/security/limits.d/cis.conf line: "* hard core 0" state: present owner: root group: root mode: 0644 create: true when: - hard_core.rc != 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi. An asterisk is missing for the contents of /etc/security/limits.d/cis.conf.
CURRENTLY:
CORRECT:
The text was updated successfully, but these errors were encountered: