Configures /etc/nsswitch.conf
.
- Ansible 2.9
nsswitch_passwd:
- files
- sss
nsswitch_group:
- files
- sss
nsswitch_shadow:
- files
- sss
---
# requirements.yml
roles:
- name: idiv_biodiversity.nsswitch
src: https://github.com/idiv-biodiversity/ansible-role-nsswitch
version: vX.Y.Z
...
Write a top-level playbook:
---
- name: server
hosts: group
roles:
- role: idiv_biodiversity.nsswitch
tags:
- nsswitch
...
Define the role dependency in meta/main.yml
:
---
dependencies:
- role: idiv_biodiversity.nsswitch
tags:
- nsswitch
...
MIT
This role was created in 2017 by Christian Krause aka wookietreiber at GitHub, HPC cluster systems administrator at the German Centre for Integrative Biodiversity Research (iDiv).