From 46bd5a0d9c77f4fa82b84ab3f1417cb8acb01703 Mon Sep 17 00:00:00 2001 From: Ilya Novickov Date: Fri, 22 Jan 2016 18:50:41 +0800 Subject: [PATCH] Fix server numbers in first 10 next 10 example --- docsite/rst/playbooks_best_practices.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/playbooks_best_practices.rst b/docsite/rst/playbooks_best_practices.rst index ecca4d75cb5..653d7f8a196 100644 --- a/docsite/rst/playbooks_best_practices.rst +++ b/docsite/rst/playbooks_best_practices.rst @@ -254,8 +254,8 @@ What about just my webservers in Boston?:: What about just the first 10, and then the next 10?:: - ansible-playbook -i production webservers.yml --limit boston[0-10] - ansible-playbook -i production webservers.yml --limit boston[10-20] + ansible-playbook -i production webservers.yml --limit boston[1-10] + ansible-playbook -i production webservers.yml --limit boston[11-20] And of course just basic ad-hoc stuff is also possible.::