Hi,
our development team delivers a start script for a “Listener process”.
It looks like:
#!/bin/sh
BASEDIR=$(dirname $0)
echo “============================================> Starting Global Listener.”
${BASEDIR}/cm listener &
I can start this script manually and everything is fine.
If I start it using the Ansible shell module, the playbook “hangs” and will not return. I tried to use the “command” Module instead, but it is still the same.
I than read about the “async” and “poll” options - but I cannot use async [time] - because the process started will live as long as it is stopped manually.
What is recommended here? Is there a way to use the existing shell script - or do we need to modify that script ?
Any help appreciated,
Torsten