I was rarely able to get anything useful with `-vvvv`, especially if the far end gave some unexpected prompt or there was some problem with sshpass, because the stdout/stderr is lost.
Try following the debugging process I outlined earlier: * assemble the full ssh command line from the ['pieces', 'shown', 'in', 'the', 'debug', 'output'], run it manually, and look for errors. Make sure you are including the sshpass part of the command line * replace sshpass with a wrapper script which redirects stderr to a tempfile and execs the real sshpass; then run ansible * make sure you have paramiko installed and used (I believe it's used by default now) * try setting up ssh key authentication, and making ansible talk to the FreeBSD box with that instead of password authentication If the last case works then it's a bit painful because it means you can't use ansible to bootstrap the ssh key authentication - but at least it may work after that step. HTH, Brian. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/df3cc60a-3029-4f7e-85fd-2cb1e94b301e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
