This is a known issue and I found a solution but it\'s not working for me.
First I had:
fatal: [openshift-node-compute-e50xx] => SSH Error: ControlPat
The limit is 104 or 108 characters. (I found different statements on the web)
You XXXed out some sensitive information in the error message so it's not clear how long your path actually is.
I guess %(directory)s
is replaced with the .ansible
directory in your users folder. Removing that and using directly your user folder would save you 12 characters:
control_path=~/%%h‐%%r
Sure, that will spam your home directory with control sockets.
Depending on the actual length of your username, you could see if you can just create another directory or find a shorter path anywhere. For example, I use ~/.ssh/tmp/%%h_%%r
Only 3 chars less but it's enough.
Finally if none of that helps, you still could fall back using /tmp
for storing the sockets. But be aware that anyone with access to /tmp
on that machine might be able to use your sockets then.