August 2017
Intermediate to advanced
332 pages
9h 16m
English
We can execute the command again.
$ ansible-playbook playbook.ymlPLAY [web1] ***************************************************************TASK [setup] **************************************************************ok: [web1]TASK [ensure apache is at the latest version] *****************************ok: [web1]TASK [ensure apache is running] *******************************************ok: [web1]PLAY RECAP ****************************************************************web1: ok=3 changed=0 unreachable=0 failed=0
Note that the output is slightly different. This time the command didn't change anything on the server. That is because each Ansible module is designed to be idempotent. In other words, executing the same module ...
Read now
Unlock full access