+++ /dev/null
----
-- name: make sure monitor_interface, monitor_address or monitor_address_block is defined
- fail:
- msg: "you must set monitor_interface, monitor_address or monitor_address_block"
- when:
- - mon_group_name in group_names
- - monitor_interface == 'interface'
- - monitor_address == "0.0.0.0"
- - monitor_address_block == 'subnet'
-
-- name: make sure radosgw_interface, radosgw_address or radosgw_address_block is defined
- fail:
- msg: "you must set radosgw_interface, radosgw_address or radosgw_address_block"
- when:
- - rgw_group_name in group_names
- - radosgw_interface == 'interface'
- - radosgw_address == 'address'
- - radosgw_address_block == 'subnet'
- name: include system_checks.yml
include_tasks: system_checks.yml
-- name: include check_mandatory_vars.yml
- include_tasks: check_mandatory_vars.yml
-
- name: include pre_requisites/prerequisites.yml
include_tasks: pre_requisites/prerequisites.yml
when: