Added pam_auth_password to nullok check

Change-Id: I692241ce21e8bd8912b8d1ff5a261ae10d7da1f2
This commit is contained in:
codejubilee 2021-04-12 21:40:57 +00:00
parent e4b55822cf
commit 9b3ea39df4

View File

@ -48,15 +48,13 @@
- name: Prevent users with blank or null passwords from authenticating (Red Hat)
lineinfile:
dest: "{{ pam_auth_file }}"
dest: "{{ item[1] }}"
state: present
regexp: "^({{ item }}.*sufficient.*)nullok(.*)$"
regexp: "^({{ item[0] }}.*sufficient.*)nullok(.*)$"
line: '\1\2'
backup: yes
backrefs: yes
with_items:
- auth
- password
loop: "{{ ['auth', 'password'] |product(['{{ pam_auth_file }}', '{{ pam_password_file }}'])|list }}"
when:
- ansible_facts['os_family'] == 'RedHat'
- security_disallow_blank_password_login | bool