I am working with SaltStack on Windows minions (Linux master). I have written a simple .sls file which copies a hello-world.txt at C:/hello_world.txt. I have also written my top.sls and configure my file_roots. Minions keys have been accepted (and test.ping is working).
My current problem is when I call (on the master):
salt 'my_minion' state.highstate
I get a:
Minion did not return. [no response]
Whereas when I try (on the minion):
salt-call state.highstate
Everything works fine (The file is copied). I have tried to add the -l debug option on the master but I don't get something interesting.
Any tips for debugging?