Is there a way to separate by host the output from a multi fork ad-hoc command?
I.e., if I ran:
ansible <group> -a '/some/cmd' -f 2
The result comes back as one long stream like
host1 | CHANGED | rc=0 >>
Listing...
"some output"
host2 | CHANGED | rc=0 >>
Listing...
"other output"
For clarity I would prefer the output with a gap between the output from each host like:
host1 | CHANGED | rc=0 >>
Listing...
"some output"
host2 | CHANGED | rc=0 >>
Listing...
"other output"
Even creating a script on the target that does an echo at the end and running that doesn't do it.