Skip to content
Snippets Groups Projects
Commit 0c3d35a5 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

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.
parent 771b0ba0
No related branches found
No related tags found
No related merge requests found
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
become: true become: true
tasks: tasks:
# Create user pinky - name: Create user pinky
- ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: MyPassword123
name: pinky name: pinky
first: pinky first: pinky
......
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
become: true become: true
tasks: tasks:
# Remove user pinky and brain - name: Delete and preserve user pinky
- ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: MyPassword123
name: pinky name: pinky
preserve: yes preserve: yes
......
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
become: true become: true
tasks: tasks:
# Remove user pinky and brain - name: Remove user pinky and brain
- ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: MyPassword123
name: pinky name: pinky
state: disabled state: disabled
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
become: true become: true
tasks: tasks:
# Remove user pinky and brain - name: Disable user pinky
- ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: MyPassword123
name: pinky name: pinky
state: disabled state: disabled
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
become: true become: true
tasks: tasks:
# Remove user pinky and brain - name: Enable user pinky
- ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: MyPassword123
name: pinky name: pinky
state: disabled state: disabled
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
become: true become: true
tasks: tasks:
# Remove user pinky and brain - name: Undelete preserved user pinky
- ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: MyPassword123
name: pinky name: pinky
state: undeleted state: undeleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment