From a3089484b15bf8c18401ac3982b73250f5b73677 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Tue, 17 Jan 2023 14:24:09 -0300 Subject: [PATCH] playbooks: Fix automount tasks to make ansible-lint happy A few playbooks still had task name starting with lower case letters. --- playbooks/automount/automount-map-absent.yml | 2 +- playbooks/automount/automount-map-present.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/automount/automount-map-absent.yml b/playbooks/automount/automount-map-absent.yml index 344fb205..9841a7b7 100644 --- a/playbooks/automount/automount-map-absent.yml +++ b/playbooks/automount/automount-map-absent.yml @@ -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 diff --git a/playbooks/automount/automount-map-present.yml b/playbooks/automount/automount-map-present.yml index 88f4bb7b..27fb49b5 100644 --- a/playbooks/automount/automount-map-present.yml +++ b/playbooks/automount/automount-map-present.yml @@ -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 -- GitLab