Skip to content
Snippets Groups Projects

fix building pam config

Files

+ 13
1
---
# 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
- name: regenerate pam config
command: pam-auth-update --force
shell: rm -f /var/lib/pam/* && pam-auth-update --force
environment:
DEBIAN_FRONTEND: noninteractive
Loading