From f0dd84dff0dfd723bf82a975c7e7d8b27a215647 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Wed, 12 Jan 2022 10:45:14 +0100 Subject: [PATCH] fix: use include_tasks instead of include --- meta/main.yml | 2 ++ tasks/main.yml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/main.yml b/meta/main.yml index be8ddae..db22a8f 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -20,6 +20,8 @@ # [rolehippie.docker](https://github.com/rolehippie/docker) # @end galaxy_info: + role_name: mariadb + namespace: rolehippie author: Thomas Boerger description: Ansible role to install and configure a simple MariaDB license: Apache-2.0 diff --git a/tasks/main.yml b/tasks/main.yml index 6a9c8a0..736bf5d 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -195,7 +195,7 @@ - name: Include galera tasks when: mariadb_galera_enabled | default(False) - include: galera.yml + include_tasks: galera.yml tags: - mariadb @@ -263,7 +263,7 @@ - name: Include exporter tasks when: mariadb_exporter_enabled | default(False) - include: exporter.yml + include_tasks: exporter.yml tags: - mariadb - mariadb-exporter