Break long lines

This commit is contained in:
Sam A. 2022-11-26 00:36:56 +01:00
parent 4adaac438e
commit 7786115387
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 7 additions and 2 deletions

View File

@ -6,8 +6,13 @@
- name: setup services
include_tasks: "services/{{ item.value.file }}"
loop: "{{ services | dict2items }}"
when: single_service is not defined and item.value.file is defined and item.value.disabled_in_vagrant is not defined
when: single_service is not defined and
item.value.file is defined and
item.value.disabled_in_vagrant is not defined
- name: setup single service
include_tasks: "services/{{ services[single_service].file }}"
when: single_service is defined and single_service in services and services[single_service].file is defined and services[single_service].disabled_in_vagrant is not defined
when: single_service is defined and
single_service in services and
services[single_service].file is defined and
services[single_service].disabled_in_vagrant is not defined