Skip to content

Commit

Permalink
Merge pull request #5 from andreygubarev/feature-remove-noqa
Browse files Browse the repository at this point in the history
update launch command with args
  • Loading branch information
andreygubarev authored May 30, 2023
2 parents adf9c8f + 10a0905 commit d09f9ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Support of other platforms and guest OS is possible, but not tested.

## Example scenario
```bash
molecule init scenario scenario_name -d molecule-qemu
molecule init scenario default --driver-name molecule-qemu --verifier-name testinfra
```

## Example `molecule.yml`
Expand Down
4 changes: 3 additions & 1 deletion molecule_qemu/playbooks/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
loop_control:
label: "{{ item.name }}"

- name: Launch VMs # noqa: no-changed-when
- name: Launch VMs
ansible.builtin.command: >
qemu-system-{{ item.image_arch }}
-name {{ item.name }}
Expand All @@ -204,6 +204,8 @@
-accel hvf
{% endif %}
{% endif %}
args:
creates: "{{ item.path_pid }}"
loop: "{{ molecule_instances }}"
loop_control:
label: "{{ item.name }}"
Expand Down

0 comments on commit d09f9ee

Please sign in to comment.