Skip to content

Commit 19fa0a4

Browse files
committed
playbooks: ansible-lint fix name
Fix name ansible-lint rule violations Fixed name rule violations across 32 file(s). Affected files include: - playbooks/bootlinux.yml - playbooks/cxl.yml - playbooks/roles/blktests/tasks/install-deps/main.yml - playbooks/roles/blktests/tasks/install-deps/suse/main.yml - playbooks/roles/blktests/tasks/main.yml ... and 27 more files Applied using the ansible-lint-fix-rules.py script with --fix=name. Generated-by: Ansible Lint (ansible-lint-fix-rules.py) Signed-off-by: Daniel Gomez <[email protected]>
1 parent 2fe64b1 commit 19fa0a4

File tree

32 files changed

+44
-44
lines changed

32 files changed

+44
-44
lines changed

playbooks/bootlinux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: bootlinux
2+
- name: Bootlinux
33
hosts: all
44
roles:
55
- role: bootlinux

playbooks/cxl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: cxl
2+
- name: Cxl
33
hosts: baseline:dev
44
roles:
55
- role: cxl

playbooks/roles/blktests/tasks/install-deps/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name: pkg
44

55
# tasks to install dependencies for oscheck
6-
- name: oscheck distribution ospecific setup
6+
- name: Oscheck distribution ospecific setup
77
ansible.builtin.import_tasks: tasks/install-deps/debian/main.yml
88
when: ansible_facts['os_family']|lower == 'debian'
99
- ansible.builtin.import_tasks: tasks/install-deps/suse/main.yml

playbooks/roles/blktests/tasks/install-deps/suse/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@
231231
- repos_present|bool
232232
- compile_nbd|bool
233233

234-
- name: git clone nbd
234+
- name: Git clone nbd
235235
ansible.builtin.git:
236236
repo: "{{ nbd_git }}"
237237
dest: "{{ nbd_data }}"

playbooks/roles/blktests/tasks/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# Distro specific
1818
- ansible.builtin.include_tasks: install-deps/main.yml
19-
- name: git clone kdevops
19+
- name: Git clone kdevops
2020
environment:
2121
GIT_SSL_NO_VERIFY: true
2222
ansible.builtin.git:
@@ -53,7 +53,7 @@
5353
state: absent
5454
tags: ["git", "blktests", "blktrace"]
5555

56-
- name: git clone blktrace
56+
- name: Git clone blktrace
5757
ansible.builtin.git:
5858
repo: "{{ blktrace_git }}"
5959
dest: "{{ blktrace_data }}"
@@ -90,7 +90,7 @@
9090
state: absent
9191
tags: ["git", "blktests"]
9292

93-
- name: git clone blktests
93+
- name: Git clone blktests
9494
ansible.builtin.git:
9595
repo: "{{ blktests_git }}"
9696
dest: "{{ blktests_data }}"
@@ -113,7 +113,7 @@
113113
args:
114114
chdir: "{{ blktests_data }}"
115115

116-
- name: git pull latest kdevops to ensure expunge list is up to date
116+
- name: Git pull latest kdevops to ensure expunge list is up to date
117117
environment:
118118
GIT_SSL_NO_VERIFY: true
119119
ansible.builtin.git:

playbooks/roles/bootlinux/tasks/build/9p.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
- bootlinux_tree_set_by_cli|bool
4545
- not target_directory_stat.stat.exists
4646

47-
- name: git clone {{ target_linux_tree }} on the control node
47+
- name: Git clone {{ target_linux_tree }} on the control node
4848
ansible.builtin.git:
4949
repo: "{{ target_linux_git }}"
5050
dest: "{{ bootlinux_9p_host_path }}"

playbooks/roles/bootlinux/tasks/build/targets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- target_linux_install_b4
1111
- ansible_facts['os_family']|lower != 'debian'
1212

13-
- name: git clone {{ target_linux_tree }} on the target nodes
13+
- name: Git clone {{ target_linux_tree }} on the target nodes
1414
ansible.builtin.git:
1515
repo: "{{ target_linux_git }}"
1616
dest: "{{ target_linux_dir_path }}"

playbooks/roles/btrfs_progs/tasks/install-deps/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: oscheck distribution ospecific setup
2+
- name: Oscheck distribution ospecific setup
33
ansible.builtin.import_tasks: debian/main.yml
44
when: ansible_facts['os_family']|lower == 'debian'
55
- ansible.builtin.import_tasks: suse/main.yml

playbooks/roles/btrfs_progs/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
when: ansible_facts['os_family']|lower != 'debian'
4444
tags: vars
4545

46-
- name: git clone btrfs_progs
46+
- name: Git clone btrfs_progs
4747
environment:
4848
GIT_SSL_NO_VERIFY: true
4949
ansible.builtin.git:

playbooks/roles/build_qemu/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
when:
4848
- build_qemu_now|bool
4949

50-
- name: git clone QEMU using {{ qemu_git }} on {{ qemu_data }}
50+
- name: Git clone QEMU using {{ qemu_git }} on {{ qemu_data }}
5151
environment:
5252
GIT_SSL_NO_VERIFY: true
5353
ansible.builtin.git:

0 commit comments

Comments
 (0)