You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
321 B
6 lines
321 B
2 years ago
|
- name: collect rproxy config
|
||
|
set_fact:
|
||
|
rproxy_collected_configs: "{{ (rproxy_collected_configs | d([])) +
|
||
|
([rproxy_config] if rproxy_config is mapping else rproxy_config) }}"
|
||
|
when: rproxy_config is defined and ((rproxy_config | type_debug == 'list') or rproxy_config is mapping)
|