1
0
mirror of https://git.lapiole.org/dani/ansible-roles.git synced 2025-04-29 16:43:21 +02:00
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