Skip to content
Snippets Groups Projects

fix building pam config

Files

+ 15
1
---
---
- name: regenerate pam config
# I kill that cat
 
- name: disable pam-auth-update heuristic
 
file:
 
path: /var/lib/pam/
 
state: "{{ item }}"
 
mode: "0755"
 
owner: root
 
group: root
 
with_items:
 
- absent
 
- directory
 
listen: "regenerate pam config"
 
 
- name: update pam
command: pam-auth-update --force
command: pam-auth-update --force
environment:
environment:
DEBIAN_FRONTEND: noninteractive
DEBIAN_FRONTEND: noninteractive
 
listen: "regenerate pam config"
- name: clear sssd cache
- name: clear sssd cache
command: sss_cache -E
command: sss_cache -E
Loading