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
c8fa83c9
Commit
c8fa83c9
authored
Sep 30, 2013
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor tweaks to the skipped config wording and adding documentation
parent
6cd8aacc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
docsite/latest/rst/intro_configuration.rst
+9
-0
examples/ansible.cfg
+4
-3
No files found.
docsite/latest/rst/intro_configuration.rst
View file @
c8fa83c9
...
@@ -109,6 +109,15 @@ different locations::
...
@@ -109,6 +109,15 @@ different locations::
Most users will not need to use this feature. See `developing_plugins` for more details
Most users will not need to use this feature. See `developing_plugins` for more details
display_skipped_hosts
=====================
If set to `False`, ansible will not display any status for a task that is skipped. The default behavior is to display skipped tasks::
#display_skipped_hosts=True
Note that Ansible will always show the task header for any task, regardless of whether or not the task is skipped.
error_on_undefined_vars
error_on_undefined_vars
=======================
=======================
...
...
examples/ansible.cfg
View file @
c8fa83c9
...
@@ -73,9 +73,10 @@ timeout = 10
...
@@ -73,9 +73,10 @@ timeout = 10
ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
# by default, ansible-playbook will display "Skipping [host]" if it determines a task
# by default, ansible-playbook will display "Skipping [host]" if it determines a task
# should not be run on a host. Set this to "no" if you don't want to see these "Skipping"
# should not be run on a host. Set this to "False" if you don't want to see these "Skipping"
# messages.
# messages. NOTE: the task header will still be shown regardless of whether or not the
# display_skipped_hosts: yes
# task is skipped.
#display_skipped_hosts = True
# by default (as of 1.3), Ansible will raise errors when attempting to dereference
# by default (as of 1.3), Ansible will raise errors when attempting to dereference
# Jinja2 variables that are not set in templates or action lines. Uncomment this line
# Jinja2 variables that are not set in templates or action lines. Uncomment this line
...
...
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