From ff9e3e58f11f922097992e40fe0cebf2a428c869 Mon Sep 17 00:00:00 2001 From: Hector Molina <2475379+donhector@users.noreply.github.com> Date: Mon, 17 Jan 2022 22:19:30 +0100 Subject: [PATCH] build(path): rename role to non fqrn --- Makefile | 2 +- molecule/default/converge.yml | 3 ++- tests/test.yml | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 15711c4..920d93d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ export PIPENV_VENV_IN_PROJECT := true -export ANSIBLE_ROLES_PATH := ${PWD}/../.. +export ANSIBLE_ROLES_PATH := ${PWD}/.. define hr @printf '%.s─' $$(seq 1 $$(tput cols)) diff --git a/molecule/default/converge.yml b/molecule/default/converge.yml index 6f024c6..7959b4d 100644 --- a/molecule/default/converge.yml +++ b/molecule/default/converge.yml @@ -2,4 +2,5 @@ - name: Converge hosts: all roles: - - { role: donhector.crossplatform, become: true } + # - { role: donhector.crossplatform, become: true } + - { role: ansible-role-crossplatform, become: true } diff --git a/tests/test.yml b/tests/test.yml index 34213e2..fc7b81b 100644 --- a/tests/test.yml +++ b/tests/test.yml @@ -2,4 +2,5 @@ - name: Test the role hosts: localhost roles: - - donhector.crossplatform + # - donhector.crossplatform + - ansible-role-crossplatform