Fix ansible-lint E404 (#6417)

This commit is contained in:
Maxime Guyot
2020-07-28 10:21:08 +02:00
committed by GitHub
parent b8c4bd200e
commit 8bd3b50e31
6 changed files with 14 additions and 14 deletions

View File

@@ -4,9 +4,9 @@
vars:
download: "{{ download_defaults | combine(downloads.crictl) }}"
- name: Install crictl config # noqa 404
- name: Install crictl config
template:
src: ../templates/crictl.yaml.j2
src: ../templates/crictl.yaml.j2 # noqa 404 not in role_path when task is included from download role
dest: /etc/crictl.yaml
owner: bin
mode: 0644

View File

@@ -4,9 +4,9 @@
vars:
download: "{{ download_defaults | combine(downloads.crictl) }}"
- name: Install crictl config # noqa 404
- name: Install crictl config
template:
src: ../templates/crictl.yaml.j2
src: ../templates/crictl.yaml.j2 # noqa 404 not in role_path when task is included from download role
dest: /etc/crictl.yaml
owner: bin
mode: 0644