Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced --start-at with --start-at-task #10623

Merged
merged 1 commit into from
Apr 7, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docsite/rst/playbooks_startnstep.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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".

Expand Down