๐ Ansible playbooks and roles for building an idempotent, interconnected and scalable infrastructure
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.
|
- 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)
|
|
|