Hi all,
Wrote a task as follows:
- name: Bootstrap Consul servers
shell: /usr/local/bin/consul agent -server -bootstrap-expect 3 -data-dir /tmp/consul -dc nyc3 -bind {{ ansible_default_ipv4.address }} >> {{ consul_log_file }} 2>&1
tags: bootconsulsvrs
When my playbook gets to this task, it hangs… (but it does successfully start the desired program…) How can I rewrote this so that the playbook continues?
Thanks,
Will