From a8a3d86620216984536e855a7b1fe38718e15265 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sat, 8 Jan 2022 21:40:24 +0100 Subject: [PATCH] copr-builder: local-image-update: use import instead of include So we can use tags. --- roles/copr/backend/files/provision/local-image-update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/copr/backend/files/provision/local-image-update.yml b/roles/copr/backend/files/provision/local-image-update.yml index 9eb1c1cb9a..211787c1c9 100644 --- a/roles/copr/backend/files/provision/local-image-update.yml +++ b/roles/copr/backend/files/provision/local-image-update.yml @@ -16,5 +16,5 @@ ansible_python_interpreter: /usr/bin/python3 tasks: - - include: "create_swap_file.yml" - - include: "provision_builder_tasks.yml" + - import_tasks: "create_swap_file.yml" + - import_tasks: "provision_builder_tasks.yml"