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