From 4aaaf2fa4fc70b59f25ad515e212f6f45953d7b4 Mon Sep 17 00:00:00 2001 From: Leo Drachenfeuer Date: Tue, 25 Apr 2023 14:06:49 +0000 Subject: [PATCH] fix(ansible-lint): missing name --- tasks/main.yml | 3 ++- tests/test.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 774bce1..f62ba75 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -8,4 +8,5 @@ failed_when: false when: teleport_version_check|bool -- include_tasks: "install.yml" +- name: "Update goteleport" + ansible.builtin.include_tasks: "install.yml" diff --git a/tests/test.yml b/tests/test.yml index 6c43b24..8c7b64a 100644 --- a/tests/test.yml +++ b/tests/test.yml @@ -1,5 +1,6 @@ --- -- hosts: all +- name: Test Playbook for testing goteleport + hosts: all remote_user: root roles: - role-goteleport