mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 05:22:05 +00:00
ansible-lint does not like to have tasks without names. The comments have been adapted and transformed into name tags.
12 lines
202 B
YAML
12 lines
202 B
YAML
---
|
|
- name: Playbook to handle users
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Disable user pinky
|
|
ipauser:
|
|
ipaadmin_password: MyPassword123
|
|
name: pinky
|
|
state: disabled
|