diff --git a/HowtoAnsible.md b/HowtoAnsible.md index 6aa3cda7..770483b0 100644 --- a/HowtoAnsible.md +++ b/HowtoAnsible.md @@ -56,10 +56,10 @@ localhost | SUCCESS => { "ping": "pong" } -$ echo HOSTNAME >> ~/.ansible/hosts && ssh-copy-id HOSTNAME && ansible HOSTNAME -i $HOME/.ansible/hosts --module ping --one-line +$ echo HOSTNAME >> ~/.ansible/hosts && ssh-copy-id HOSTNAME && ansible HOSTNAME -i $HOME/.ansible/hosts -m ping --one-line HOSTNAME | SUCCESS => {"changed": false, "ping": "pong"} -$ ansible HOSTNAME --module command --args "date" +$ ansible HOSTNAME -m command --args "date" HOSTNAME | SUCCESS | rc=0 >> jeudi 26 mai 2016, 23:16:01 (UTC+0200) ~~~