From 7067a225bbd79f15a41845db701936dccb70c9df Mon Sep 17 00:00:00 2001 From: Will Szumski Date: Thu, 31 Oct 2024 12:27:39 +0000 Subject: [PATCH] Remove deprecated use of include ``` ERROR! [DEPRECATED]: ansible.builtin.include has been removed. Use include_tasks or import_tasks instead. This feature was removed from ansible-core in a release after 2023-05-16. Please update your playbooks. ``` Change-Id: Ifa4fc02a8da9de83e022de0f98c8644abc3198ed --- roles/tenks-diagnostics/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/tenks-diagnostics/tasks/main.yml b/roles/tenks-diagnostics/tasks/main.yml index 4dc1719..a1fae86 100644 --- a/roles/tenks-diagnostics/tasks/main.yml +++ b/roles/tenks-diagnostics/tasks/main.yml @@ -1,2 +1,2 @@ --- -- include: "{{ tenks_diagnostics_phase }}.yml" +- include_tasks: "{{ tenks_diagnostics_phase }}.yml"