Skip to content

Commit 7eb4cc6

Browse files
Fix ansible-lint rule violations
1 parent 046a8f3 commit 7eb4cc6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
---
12
theme: jekyll-theme-minimal
23
logo: https://avatars0.githubusercontent.com/u/47434624

meta/main.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@ galaxy_info:
1717
versions:
1818
- buster
1919
- stretch
20-
galaxy_tags: ['libvirt']
21-
20+
galaxy_tags: [libvirt]
2221
dependencies: []

tasks/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
environment:
2323
PATH: "{{ ansible_env.PATH }}:{{ ansible_env.HOME }}/.local/bin"
2424
- name: List the VM
25-
command: "virsh -c {{ virt_lightning_qemu_uri }} list"
25+
command: virsh -c {{ virt_lightning_qemu_uri }} list
2626
register: list_vm
2727
- name: Assert the VM is in the list
2828
assert:
@@ -34,7 +34,7 @@
3434
environment:
3535
PATH: "{{ ansible_env.PATH }}:{{ ansible_env.HOME }}/.local/bin"
3636
- name: List the VM
37-
command: "virsh -c {{ virt_lightning_qemu_uri }} list"
37+
command: virsh -c {{ virt_lightning_qemu_uri }} list
3838
register: list_vm
3939
- name: Assert the VM is not in the list
4040
assert:

tasks/venv.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
when: dev_mode is defined
77
- name: Fetch virt-lightning master branch
88
git:
9-
repo: 'https://github.com/virt-lightning/virt-lightning'
9+
repo: https://github.com/virt-lightning/virt-lightning
1010
dest: ~/virt-lightning
1111
when: dev_mode is not defined
1212
- name: Pip install

0 commit comments

Comments
 (0)