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

@@ -4,8 +4,8 @@
become: true
tasks:
# Create user pinky
- ipauser:
- name: Create user pinky
ipauser:
ipaadmin_password: MyPassword123
name: pinky
first: pinky

View File

@@ -4,8 +4,8 @@
become: true
tasks:
# Remove user pinky and brain
- ipauser:
- name: Delete and preserve user pinky
ipauser:
ipaadmin_password: MyPassword123
name: pinky
preserve: yes

View File

@@ -4,8 +4,8 @@
become: true
tasks:
# Remove user pinky and brain
- ipauser:
- name: Remove user pinky and brain
ipauser:
ipaadmin_password: MyPassword123
name: pinky
state: disabled

View File

@@ -4,8 +4,8 @@
become: true
tasks:
# Remove user pinky and brain
- ipauser:
- name: Disable user pinky
ipauser:
ipaadmin_password: MyPassword123
name: pinky
state: disabled

View File

@@ -4,8 +4,8 @@
become: true
tasks:
# Remove user pinky and brain
- ipauser:
- name: Enable user pinky
ipauser:
ipaadmin_password: MyPassword123
name: pinky
state: disabled

View File

@@ -4,8 +4,8 @@
become: true
tasks:
# Remove user pinky and brain
- ipauser:
- name: Undelete preserved user pinky
ipauser:
ipaadmin_password: MyPassword123
name: pinky
state: undeleted