diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..c0c2fa6 --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,4 @@ +--- +profile: basic +exclude_paths: + - .github diff --git a/converge.yml b/converge.yml index d284113..15ce8f6 100644 --- a/converge.yml +++ b/converge.yml @@ -9,8 +9,8 @@ with_items: "{{ lookup('env', 'components') }}" - name: Test the component by executing it using ansible on the workspace - ansible.builtin.command: ansible-playbook -c local -v -b {{ remote_plugin.arguments }} --extra-vars='{{ remote_plugin.parameters }}' /rsc/plugins/{{ - item.name }}/{{ item.path }} + ansible.builtin.command: ansible-playbook -c local -v -b {{ remote_plugin.arguments }} --extra-vars='{{ remote_plugin.parameters }}' /rsc/plugins/{{ item.name + }}/{{ item.path }} register: ansible_on_workspace changed_when: "'changed=0' not in ansible_on_workspace.stdout_lines[-1]" vars: diff --git a/requirements.yml b/requirements.yml index 534e992..cbc2f3e 100644 --- a/requirements.yml +++ b/requirements.yml @@ -2,4 +2,3 @@ # This file is just to specify requirements for running the liter on the SRC-Molecule repository. collections: - name: ansible.posix -