ipauser playbooks: Add names for tasks

ansible-lint does not like to have tasks without names. The comments have
been adapted and transformed into name tags.
This commit is contained in:
Thomas Woerner
2019-07-09 10:01:38 +02:00
parent 771b0ba029
commit 0c3d35a577
6 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
---
- name: Playbook to handle users
hosts: ipaserver
become: true
tasks:
- name: Delete and preserve user pinky
ipauser:
ipaadmin_password: MyPassword123
name: pinky
preserve: yes
state: disabled