September 2018
Beginner to intermediate
214 pages
5h 53m
English
As discussed previously, Ansible ad hoc can be used for a quick check, such as running a ping command to check if the hosts are up and running. The command should look as follows:
ansible servers -m ping
The output of the command will look similar to the following:

The ping module can also be used in the playbook as part of the bigger script, where the result of the ping can be piped to be the condition for another action. The playbook code is as follows:
---- name: Ping module playbook usage hosts: servers gather_facts: false tasks: - name: ping the local servers ping:
The output of this code will look ...
Read now
Unlock full access