Skip to content

Commit

Permalink
Fix code layout
Browse files Browse the repository at this point in the history
Collection layout expectes all action plugins to be inside
plugins/modules.

Found while testing: ansible/ansible-lint#1552
  • Loading branch information
ssbarnea committed May 18, 2021
1 parent dacc36b commit f560649
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion roles/copy_or_link/tasks/main.yml
@@ -1,5 +1,5 @@
- name: insert file
copy_or_link:
devroles.system.copy_or_link:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
force: "{{ item.force | default(false) }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/dotfiles/tasks/01_shell.yml
Expand Up @@ -3,7 +3,7 @@
bashrc_role_path: "{{ role_path }}"

- name: run files
copy_or_link:
devroles.system.copy_or_link:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
force: "{{ item.force }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/packages/tasks/04_packer.yml
Expand Up @@ -5,7 +5,7 @@
state: stopped
enabled: false
name: tmp.mount
ignore_errors: true
ignore_errors: true # noqa: ignore-errors
when:
- ansible_facts.service_mgr == 'systemd'
- ansible_connection not in ['docker', 'podman']

0 comments on commit f560649

Please sign in to comment.