ansible-roles/roles/sssd_ldap_auth/tasks/pam_RedHat.yml
2021-12-01 19:13:34 +01:00

14 lines
394 B
YAML

---
- name: Check if authconfig needs to update pam config
command: "grep -P '^auth\\s+sufficient\\s+pam_sss.so' /etc/pam.d/system-auth"
register: auth_sss_done
changed_when: False
failed_when: False
tags: auth
- name: Configure authentication with authconfig
command: authconfig --enablemkhomedir --enablesssd --enablesssdauth --update
when: auth_sss_done.rc != 0
tags: auth