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
afe631fe
Commit
afe631fe
authored
Nov 16, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4928 from mscherer/fix_doc
fix various typos in the documentation
parents
56e3d312
f290c2ae
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
8 deletions
+8
-8
docsite/rst/developing_inventory.rst
+1
-1
docsite/rst/guide_aws.rst
+1
-1
docsite/rst/intro_configuration.rst
+1
-1
docsite/rst/intro_dynamic_inventory.rst
+1
-1
docsite/rst/modules.rst
+1
-1
docsite/rst/playbooks.rst
+1
-1
docsite/rst/playbooks_error_handling.rst
+1
-1
docsite/rst/playbooks_lookups.rst
+1
-1
No files found.
docsite/rst/developing_inventory.rst
View file @
afe631fe
...
...
@@ -60,7 +60,7 @@ Tuning the External Inventory Script
The stock inventory script system detailed above works for all versions of Ansible, but calling
'--host' for every host can be rather expensive, especially if it involves expensive API calls to
a remote subsystem
m. In Ansible
a remote subsystem
. In Ansible
1.3 or later, if the inventory script returns a top level element called "_meta", it is possible
to return all of the host variables in one inventory script call. When this meta element contains
a value for "hostvars", the inventory script will not be invoked with "--host" for each host. This
...
...
docsite/rst/guide_aws.rst
View file @
afe631fe
...
...
@@ -136,7 +136,7 @@ AWX Autoscaling
AnsibleWorks's "AWX" product also contains a very nice feature for auto-scaling use cases. In this mode, a simple curl script can call
a defined URL and the server will "dial out" to the requester and configure an instance that is spinning up. This can be a great way
to reconfigure ephmeral nodes. See the AWX documentation for more details. Click on the AWX link in the sidebar for details.
to reconfigure eph
e
meral nodes. See the AWX documentation for more details. Click on the AWX link in the sidebar for details.
A benefit of using the callback in AWX over pull mode is that job results are still centrally recorded and less information has to be shared
with remote hosts.
...
...
docsite/rst/intro_configuration.rst
View file @
afe631fe
...
...
@@ -258,7 +258,7 @@ Ansible prefers to use Jinja2 syntax '{{ like_this }}' to indicate a variable sh
older versions of playbooks used a more Perl-style syntax. This syntax was undesirable as it frequently conflicted with bash and
was hard to explain to new users when referencing complicated variable hierarchies, so we have standardized on the '{{ jinja2 }}' way.
To ensure a string like '$foo' is not in
dadverted
ly replaced in a Perl or Bash script template, the old form of templating (which is
To ensure a string like '$foo' is not in
advertent
ly replaced in a Perl or Bash script template, the old form of templating (which is
still enabled as of Ansible 1.4) can be disabled like so ::
legacy_playbook_variables = no
...
...
docsite/rst/intro_dynamic_inventory.rst
View file @
afe631fe
...
...
@@ -217,7 +217,7 @@ Using Multiple Inventory Sources
````````````````````````````````
If the location given to -i in Ansible is a directory (or as so configured in ansible.cfg), Ansible can use multiple inventory sources
at the
s
same time. When doing so, it is possible to mix both dynamic and statically managed inventory sources in the same ansible run. Instant
at the same time. When doing so, it is possible to mix both dynamic and statically managed inventory sources in the same ansible run. Instant
hybrid cloud!
.. seealso::
...
...
docsite/rst/modules.rst
View file @
afe631fe
...
...
@@ -45,7 +45,7 @@ Modules are `idempotent`, meaning they will seek to avoid changes to the system
playbooks, these modules can trigger 'change events' in the form of notifying 'handlers'
to run additional tasks.
Documention for each module can be accessed from the command line with the
Document
at
ion for each module can be accessed from the command line with the
ansible-doc as well as the man command::
ansible-doc command
...
...
docsite/rst/playbooks.rst
View file @
afe631fe
...
...
@@ -155,7 +155,7 @@ Just `Control-C` to kill it and run it again with `-K`.
only
occurs
when
sudoing
from
a
user
like
'bob'
to
'timmy'
,
not
when
going
from
'bob'
to
'root'
,
or
logging
in
directly
as
'bob'
or
'root'
.
If
this
concerns
you
that
this
data
is
briefly
readable
(
not
writ
e
able
),
avoid
transferring
uncrypted
passwords
with
(
not
writable
),
avoid
transferring
uncrypted
passwords
with
`
sudo_user
`
set
.
In
other
cases
,
'/tmp'
is
not
used
and
this
does
not
come
into
play
.
Ansible
also
takes
care
to
not
log
password
parameters
.
...
...
docsite/rst/playbooks_error_handling.rst
View file @
afe631fe
...
...
@@ -6,7 +6,7 @@ Error Handling In Playbooks
Ansible normally has defaults that make sure to check the return codes of commands and modules and
it fails fast -- forcing an error to be dealt with unless you decide otherwise.
y
Sometimes a command that returns 0 isn't an error. Sometimes a command might not always
need to report that it 'changed' the remote system. This section describes how to change
the default behavior of Ansible for certain tasks so output and error handling behavior is
...
...
docsite/rst/playbooks_lookups.rst
View file @
afe631fe
...
...
@@ -77,7 +77,7 @@ Starting in version 1.4, password accepts a "chars" parameter to allow defining
(...)
To enter comma use two commas ',,' somewhere - preferably at the end. Quotes and double q
ou
tes are not supported.
To enter comma use two commas ',,' somewhere - preferably at the end. Quotes and double q
uo
tes are not supported.
.. _more_lookups:
...
...
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