From 1ae6debcc4b63b66cc0c98e4b612254c3cf59c09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 11 Mar 2024 14:25:42 +0100 Subject: [PATCH] meta: use full names of Ansible roles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- meta/main.yml | 2 +- tasks/consul.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/main.yml b/meta/main.yml index f083be5..30d8209 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -10,6 +10,6 @@ galaxy_info: versions: - xenial dependencies: - - name: consul-service + - name: infra-role-consul-service src: git+git@github.com:status-im/infra-role-consul-service.git scm: git diff --git a/tasks/consul.yml b/tasks/consul.yml index 8e8d826..7efa786 100644 --- a/tasks/consul.yml +++ b/tasks/consul.yml @@ -1,6 +1,6 @@ --- - name: Create Consul service definition - include_role: name=consul-service + include_role: name=infra-role-consul-service vars: consul_config_name: '{{ matterbridge_service_name }}' consul_services: @@ -13,7 +13,7 @@ script: '/usr/bin/pgrep -xl matterbridge' - name: Create Consul service definition for API - include_role: name=consul-service + include_role: name=infra-role-consul-service when: '{{ matterbridge_api_enabled }}' vars: consul_config_name: '{{ matterbridge_service_name }}-api'