diff --git a/README.md b/README.md index 85f8f91..3a4b5eb 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ locally to ensure they work properly. Launch playbook on the fly on a host not declared in the inventory. ``` -ansible-playbook -u root -i , playbooks/test.yml +ansible-playbook -u root -i , [--tags tag1,tag2] playbooks/test.yml ``` *Note the comma at the end of the hostname or IP.* diff --git a/playbooks/ping.yml b/playbooks/ping.yml index 2f48123..b7061eb 100644 --- a/playbooks/ping.yml +++ b/playbooks/ping.yml @@ -1,4 +1,4 @@ -- name: Check that a host is alive and reachable +- name: Check whether host is alive and reachable hosts: all gather_facts: no become: no