Skip to content

Commit

Permalink
Fixes syntax error in CIS benchmark causing control to never work
Browse files Browse the repository at this point in the history
Signed-off-by: Dan D <[email protected]>
  • Loading branch information
dderemiah committed Apr 19, 2024
1 parent 84850fd commit c10a335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/section_5/cis_5.5.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
when: ubtu22cis_5_5_1_4_inactive_setting.stdout != ubtu22cis_pass.inactive | string

- name: "5.5.1.4 | AUDIT | Ensure inactive password lock is 30 days or less | Get Individual users"
ansible.builtin.shell: "awk -F: '(/^[^:]+:[^!*]/ && ($7~/(\\\\s*$|-1)/ || ( $7>1 && $7<{{ ubtu22cis_pass.inactive }}))) {print $1}' /etc/shadow"
ansible.builtin.shell: "awk -F: '(/^[^:]+:[^!*]/ && ($7~/(\\s*|-1)/ || ( $7>1 && $7<{{ ubtu22cis_pass.inactive }}))) {print $1}' /etc/shadow"
changed_when: false
failed_when: false
register: ubtu22cis_5_5_1_4_inactive_users
Expand Down

0 comments on commit c10a335

Please sign in to comment.