mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-25 22:53:23 +02:00
20 lines
333 B
YAML
20 lines
333 B
YAML
![]() |
---
|
||
|
|
||
|
- name: Install sssd and the needed tools
|
||
|
apt:
|
||
|
name:
|
||
|
- sssd
|
||
|
- libnss-sss
|
||
|
- libpam-sss
|
||
|
- ca-certificates
|
||
|
tags: auth
|
||
|
|
||
|
- name: Install oddjob-mkhomedir
|
||
|
apt:
|
||
|
name:
|
||
|
- oddjob-mkhomedir
|
||
|
when: ansible_distribution_major_version is version('9', '>=')
|
||
|
notify: restart oddjobd
|
||
|
tags: auth
|
||
|
|