Skip to content

Commit e38f04d

Browse files
committed
Fix linter errors
1 parent 3a5e4b5 commit e38f04d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.ansible-lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ exclude_paths:
2121
- playbooks/template_cloudinit_config.yml
2222
- playbooks/specific_edges_to_teardown.yml
2323
- roles/aws_teardown/tasks/main.yml
24+
- .ansible
2425
# parseable: true
2526
# quiet: true
2627
# strict: true

roles/aws_controllers/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@
104104
ansible.builtin.include_role:
105105
name: common
106106
tasks_from: generate_deployment_facts_controllers.yml
107-
when: deployment_facts.validator_instances | length > 0 or deployment_facts.manager_instances | length > 0 or deployment_facts.controller_instances | length > 0
107+
when: >
108+
deployment_facts.validator_instances | length > 0 or deployment_facts.manager_instances | length > 0 or deployment_facts.controller_instances | length > 0
108109
109110
- name: Check reachability of Manager instance with SSH probe
110111
ansible.builtin.include_role:

roles/azure_controllers/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@
122122
ansible.builtin.include_role:
123123
name: common
124124
tasks_from: generate_deployment_facts_controllers.yml
125-
when: deployment_facts.validator_instances | length > 0 or deployment_facts.manager_instances | length > 0 or deployment_facts.controller_instances | length > 0
125+
when: >
126+
deployment_facts.validator_instances | length > 0 or deployment_facts.manager_instances | length > 0 or deployment_facts.controller_instances | length > 0
126127
127128
- name: "Check reachability of Manager instance with SSH probe"
128129
ansible.builtin.include_role:

0 commit comments

Comments
 (0)