diff --git a/docs/docsite/rst/playbooks_best_practices.rst b/docs/docsite/rst/playbooks_best_practices.rst index 354b97325fa..ff4e9240048 100644 --- a/docs/docsite/rst/playbooks_best_practices.rst +++ b/docs/docsite/rst/playbooks_best_practices.rst @@ -297,10 +297,10 @@ For just my webservers in Boston:: ansible-playbook -i production webservers.yml --limit boston -Forjust the first 10, and then the next 10:: +For just the first 10, and then the next 10:: - ansible-playbook -i production webservers.yml --limit boston[1:10] - ansible-playbook -i production webservers.yml --limit boston[11:20] + ansible-playbook -i production webservers.yml --limit boston[0:9] + ansible-playbook -i production webservers.yml --limit boston[10:19] And of course just basic ad-hoc stuff is also possible::