Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 36513e9

Browse files
authored
Silence ansible fqcn error about vagrant module. (#191)
The local vagrant module is not (yet?) inside a collection, so there's no FQCN. Add needed noqa bits. Signed-off-by: Arnaud Patard <[email protected]> Signed-off-by: Arnaud Patard <[email protected]>
1 parent 4d711b6 commit 36513e9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

molecule_vagrant/playbooks/create.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
gather_facts: false
66
no_log: "{{ molecule_no_log }}"
77
tasks:
8-
- name: Create molecule instance(s)
8+
- name: Create molecule instance(s) # noqa fqcn[action]
99
vagrant:
1010
instances: "{{ molecule_yml.platforms }}"
1111
default_box: "{{ molecule_yml.driver.default_box | default('generic/alpine316') }}"

molecule_vagrant/playbooks/destroy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
gather_facts: false
66
no_log: "{{ molecule_no_log }}"
77
tasks:
8-
- name: Destroy molecule instance(s)
8+
- name: Destroy molecule instance(s) # noqa fqcn[action]
99
vagrant:
1010
instances: "{{ molecule_yml.platforms }}"
1111
default_box: "{{ molecule_yml.driver.default_box | default('generic/alpine316') }}"

molecule_vagrant/test/scenarios/molecule/default-compat/create.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
gather_facts: false
66
no_log: "{{ molecule_no_log }}"
77
tasks:
8-
- name: Create molecule instance(s)
8+
- name: Create molecule instance(s) # noqa fqcn[action]
99
vagrant:
1010
instance_name: "{{ item.name }}"
1111
instance_interfaces: "{{ item.interfaces | default(omit) }}"

molecule_vagrant/test/scenarios/molecule/default-compat/destroy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
gather_facts: false
66
no_log: "{{ molecule_no_log }}"
77
tasks:
8-
- name: Destroy molecule instance(s)
8+
- name: Destroy molecule instance(s) # noqa fqcn[action]
99
vagrant:
1010
instance_name: "{{ item.name }}"
1111
platform_box: "{{ item.box | default(omit) }}"

0 commit comments

Comments
 (0)