Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
4caed6d4
Commit
4caed6d4
authored
Nov 14, 2014
by
Brian Coca
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9266 from sjahl/step-start-docs
Documents the --step and --start-at options to ansible-playbook.
parents
c3c6a07e
1d05be82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
docsite/rst/playbooks_intro.rst
+19
-0
No files found.
docsite/rst/playbooks_intro.rst
View file @
4caed6d4
...
...
@@ -335,6 +335,25 @@ Let's run a playbook using a parallelism level of 10::
ansible
-
playbook
playbook
.
yml
-
f
10
Playbooks
can
also
be
executed
interactively
with
``--
step
``::
ansible
-
playbook
playbook
.
yml
--
step
This
will
cause
ansible
to
stop
on
each
task
,
and
ask
if
it
should
execute
that
task
.
Say
you
had
a
task
called
"configure ssh"
,
the
playbook
run
will
stop
and
ask
::
Perform
task
:
configure
ssh
(
y
/
n
/
c
):
Answering
"y"
will
execute
the
task
,
answering
"n"
will
skip
the
task
,
and
answering
"c"
will
continue
executing
all
the
remaining
tasks
without
asking
.
If
you
want
to
start
executing
your
playbook
at
a
particular
task
,
you
can
do
so
with
the
``--
start
-
at
``
option
::
ansible
-
playbook
playbook
.
yml
--
start
-
at
=
"install packages"
The
above
will
start
executing
your
playbook
at
a
task
named
"install packages"
.
..
_ansible
-
pull
:
Ansible
-
Pull
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment