playbooks: Fix automount tasks to make ansible-lint happy

A few playbooks still had task name starting with lower case letters.
This commit is contained in:
Rafael Guterres Jeffman
2023-01-17 14:24:09 -03:00
parent 308d970b6c
commit a3089484b1
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
become: no
tasks:
- name: ensure map TestMap is absent
- name: Ensure map TestMap is absent
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap

View File

@@ -4,7 +4,7 @@
become: no
tasks:
- name: ensure map TestMap is present
- name: Ensure map TestMap is present
ipaautomountmap:
ipaadmin_password: SomeADMINpassword
name: TestMap