From bb3f50361e4c616e57550b15ed609738a7d00ae8 Mon Sep 17 00:00:00 2001 From: Mohamed Hazem Date: Sun, 5 Apr 2015 20:47:22 +0300 Subject: [PATCH] Replaced --start-at with --start-at-task --- docsite/rst/playbooks_startnstep.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/playbooks_startnstep.rst b/docsite/rst/playbooks_startnstep.rst index 1067c3e1214..106fd2d5de4 100644 --- a/docsite/rst/playbooks_startnstep.rst +++ b/docsite/rst/playbooks_startnstep.rst @@ -8,9 +8,9 @@ This shows a few alternative ways to run playbooks. These modes are very useful Start-at-task ````````````` -If you want to start executing your playbook at a particular task, you can do so with the ``--start-at`` option:: +If you want to start executing your playbook at a particular task, you can do so with the ``--start-at-task`` option:: - ansible-playbook playbook.yml --start-at="install packages" + ansible-playbook playbook.yml --start-at-task="install packages" The above will start executing your playbook at a task named "install packages".