From 6607010b2be7ac624d0dbf6933ced47922461638 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 10 Mar 2014 16:49:45 -0500 Subject: [PATCH] Fix ad-hoc command examples --- 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 fbe34ca344e..298b832ff0a 100644 --- a/docsite/rst/playbooks_best_practices.rst +++ b/docsite/rst/playbooks_best_practices.rst @@ -223,8 +223,8 @@ What about just the first 10, and then the next 10?:: And of course just basic ad-hoc stuff is also possible.:: - ansible -i production -m ping - ansible -i production -m command -a '/sbin/reboot' --limit boston + ansible boston -i production -m ping + ansible boston -i production -m command -a '/sbin/reboot' And there are some useful commands to know (at least in 1.1 and higher)::