mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Automatically prepend partition if non-fully qualified monitors are passed
This commit is contained in:
parent
b26a88095f
commit
e2278fd9e8
1 changed files with 7 additions and 0 deletions
|
@ -392,6 +392,13 @@ def main():
|
||||||
monitor_type = monitor_type.lower()
|
monitor_type = monitor_type.lower()
|
||||||
quorum = module.params['quorum']
|
quorum = module.params['quorum']
|
||||||
monitors = module.params['monitors']
|
monitors = module.params['monitors']
|
||||||
|
if monitors:
|
||||||
|
monitors = []
|
||||||
|
for monitor in module.params['monitors']:
|
||||||
|
if "/" not in monitor:
|
||||||
|
monitors.append("/%s/%s" % (partition, monitor))
|
||||||
|
else:
|
||||||
|
monitors.append(monitor)
|
||||||
slow_ramp_time = module.params['slow_ramp_time']
|
slow_ramp_time = module.params['slow_ramp_time']
|
||||||
service_down_action = module.params['service_down_action']
|
service_down_action = module.params['service_down_action']
|
||||||
if service_down_action:
|
if service_down_action:
|
||||||
|
|
Loading…
Reference in a new issue