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