Ansible for Cisco CallManager

Guys,
i’m new to ansible. I’m trying to execute commands on remote host, which is Cisco CallManager ( essentially Linux box), but my script just hangs and is doing nothing

ansible X.X.X.X -m raw -a “show myself” -vvvv

Loaded callback minimal of type stdout, v2.0

<192.168.X.X> ESTABLISH CONNECTION FOR USER: admin on PORT 22 TO 192.168.X.X

<192.168.X.X> EXEC show myself

And that’s it. Nothing happens. When i try to use command method it gives out error.
So is it actually possible to connect to remote CallManager and get some commands executed ?

Appreciate for the response.

command won’t work unless there is python (with a json library) installed, raw is your only option otherwise.

Since raw should work, try switching the connection (-c ssh or -c paramiko) as many of these products have customized ssh and that breaks in ‘interesting’ ways.