docker-common: remove check_mandatory_vars.yml

this is part of `ceph-validate` role.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
pull/3325/head
Guillaume Abrioux 2018-10-19 16:51:38 +02:00 committed by Sébastien Han
parent 6947f9c3ea
commit 1144df2852
2 changed files with 0 additions and 21 deletions

View File

@ -1,18 +0,0 @@
---
- 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'

View File

@ -2,9 +2,6 @@
- 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: