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
df8b8fc4
Commit
df8b8fc4
authored
Sep 29, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing some more doc links. Still not done.
parent
4a0e06dc
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
21 deletions
+11
-21
docsite/latest/rst/guide_aws.rst
+0
-11
docsite/latest/rst/index.rst
+1
-0
docsite/latest/rst/intro_configuration.rst
+1
-1
docsite/latest/rst/intro_getting_started.rst
+1
-1
docsite/latest/rst/intro_installation.rst
+2
-2
docsite/latest/rst/intro_inventory.rst
+2
-2
docsite/latest/rst/intro_patterns.rst
+1
-1
docsite/latest/rst/modules.rst
+2
-2
docsite/latest/rst/playbooks.rst
+1
-1
docsite/latest/rst/playbooks_best_practices.rst
+0
-0
docsite/latest/rst/playbooks_variables.rst
+0
-0
No files found.
docsite/latest/rst/guide_aws.rst
View file @
df8b8fc4
...
@@ -145,14 +145,3 @@ Using Ansible's Cloud Formation Module
...
@@ -145,14 +145,3 @@ Using Ansible's Cloud Formation Module
these modules are documented on the module page, more walk throughs coming soon
these modules are documented on the module page, more walk throughs coming soon
.. seealso::
:doc:`examples`
Examples of basic commands
:doc:`playbooks`
Learning ansible's configuration management language
`Mailing List <http://groups.google.com/group/ansible-project>`_
Questions? Help? Ideas? Stop by the list on Google Groups
`irc.freenode.net <http://irc.freenode.net>`_
#ansible IRC chat channel
docsite/latest/rst/index.rst
View file @
df8b8fc4
...
@@ -61,6 +61,7 @@ ways to organize playbooks and the files they include, and we'll offer up some s
...
@@ -61,6 +61,7 @@ ways to organize playbooks and the files they include, and we'll offer up some s
playbooks
playbooks
playbooks_roles
playbooks_roles
playbooks_variables
playbooks_variables
playbooks_conditionals
playbooks_loops
playbooks_loops
playbooks_best_practices
playbooks_best_practices
Example Playbooks <https://github.com/ansible/ansible-examples>
Example Playbooks <https://github.com/ansible/ansible-examples>
...
...
docsite/latest/rst/intro_configuration.rst
View file @
df8b8fc4
The Ansible Configuration File
The Ansible Configuration File
==============================
++++++++++++++++++++++++++++++
.. highlight:: bash
.. highlight:: bash
...
...
docsite/latest/rst/intro_getting_started.rst
View file @
df8b8fc4
...
@@ -85,7 +85,7 @@ Now run a live command on all of your nodes:
...
@@ -85,7 +85,7 @@ Now run a live command on all of your nodes:
$ ansible all -a "/bin/echo hello"
$ ansible all -a "/bin/echo hello"
Congratulations. You've just contacted your nodes with Ansible. It's
Congratulations. You've just contacted your nodes with Ansible. It's
soon going to be time to read some of the more real-world :doc:`
examples
`, and explore
soon going to be time to read some of the more real-world :doc:`
intro_adhoc
`, and explore
what you can do with different modules, as well as the Ansible
what you can do with different modules, as well as the Ansible
:doc:`playbooks` language. Ansible is not just about running commands, it
:doc:`playbooks` language. Ansible is not just about running commands, it
also has powerful configuration management and deployment features. There's more to
also has powerful configuration management and deployment features. There's more to
...
...
docsite/latest/rst/intro_installation.rst
View file @
df8b8fc4
...
@@ -59,7 +59,7 @@ On the managed nodes, you only need Python 2.4 or later, but if you are are runn
...
@@ -59,7 +59,7 @@ On the managed nodes, you only need Python 2.4 or later, but if you are are runn
Python 3 is a slightly different language than Python 2 and most python programs (including
Python 3 is a slightly different language than Python 2 and most python programs (including
Ansible) are not switching over yet. However, some Linux distributions (Gentoo, Arch) may not have a
Ansible) are not switching over yet. However, some Linux distributions (Gentoo, Arch) may not have a
Python 2.X interpreter installed by default. On those systems, you should install one, and set
Python 2.X interpreter installed by default. On those systems, you should install one, and set
the 'ansible_python_interpreter' variable in inventory (see :doc:`
patterns
`) to point at your 2.X python. Distributions
the 'ansible_python_interpreter' variable in inventory (see :doc:`
intro_inventory
`) to point at your 2.X python. Distributions
like Red Hat Enterprise Linux, CentOS, Fedora, and Ubuntu all have a 2.X interpreter installed
like Red Hat Enterprise Linux, CentOS, Fedora, and Ubuntu all have a 2.X interpreter installed
by default and this does not apply to those distributions. This is also true of nearly all
by default and this does not apply to those distributions. This is also true of nearly all
Unix systems. If you need to bootstrap these remote systems by installing Python 2.X,
Unix systems. If you need to bootstrap these remote systems by installing Python 2.X,
...
@@ -110,7 +110,7 @@ Ansible also uses the the following Python modules that need to be installed::
...
@@ -110,7 +110,7 @@ Ansible also uses the the following Python modules that need to be installed::
$ sudo pip install paramiko PyYAML jinja2
$ sudo pip install paramiko PyYAML jinja2
Once running the env-setup script you'll be running from checkout and the default inventory file
Once running the env-setup script you'll be running from checkout and the default inventory file
will be /etc/ansible/hosts. You can optionally specify an inventory file (see :doc:`
patterns
`)
will be /etc/ansible/hosts. You can optionally specify an inventory file (see :doc:`
intro_inventroy
`)
other than /etc/ansible/hosts:
other than /etc/ansible/hosts:
.. code-block:: bash
.. code-block:: bash
...
...
docsite/latest/rst/intro_inventory.rst
View file @
df8b8fc4
...
@@ -10,7 +10,7 @@ the location /etc/ansible/hosts.
...
@@ -10,7 +10,7 @@ the location /etc/ansible/hosts.
Not only is this inventory configurable, but you can also use
Not only is this inventory configurable, but you can also use
multiple inventory files at the same time (explained below) and also
multiple inventory files at the same time (explained below) and also
pull inventory from dynamic or cloud sources, as described in
`intro_inventory_dynamic
`.
pull inventory from dynamic or cloud sources, as described in
:doc:`intro_dynamic_inventory
`.
.. contents::
.. contents::
:depth: 2
:depth: 2
...
@@ -204,7 +204,7 @@ Examples from a host file::
...
@@ -204,7 +204,7 @@ Examples from a host file::
.. seealso::
.. seealso::
:doc:`intro_
inventory_dynamic
`
:doc:`intro_
dynamic_inventory
`
Pulling inventory from dynamic sources, such as cloud providers
Pulling inventory from dynamic sources, such as cloud providers
:doc:`intro_examples`
:doc:`intro_examples`
Examples of basic commands
Examples of basic commands
...
...
docsite/latest/rst/intro_patterns.rst
View file @
df8b8fc4
...
@@ -6,7 +6,7 @@ Patterns
...
@@ -6,7 +6,7 @@ Patterns
Patterns in Ansible are how we decide which hosts to manage. This can mean what hosts to communicate with, but in terms
Patterns in Ansible are how we decide which hosts to manage. This can mean what hosts to communicate with, but in terms
of :doc:`playbooks` it actually means what hosts to apply a particular configuration or IT process to.
of :doc:`playbooks` it actually means what hosts to apply a particular configuration or IT process to.
We'll go over how to use the command line in :doc:`intro_
examples
` section, however, basically it looks like this::
We'll go over how to use the command line in :doc:`intro_
adhoc
` section, however, basically it looks like this::
ansible <pattern_goes_here> -m <module_name> -a <arguments>
ansible <pattern_goes_here> -m <module_name> -a <arguments>
...
...
docsite/latest/rst/modules.rst
View file @
df8b8fc4
...
@@ -59,7 +59,7 @@ Let's see what's available in the Ansible module library, out of the box:
...
@@ -59,7 +59,7 @@ Let's see what's available in the Ansible module library, out of the box:
Writing your own modules
Writing your own modules
````````````````````````
````````````````````````
See :doc:`
moduledev
`.
See :doc:`
developing_modules
`.
.. seealso::
.. seealso::
...
@@ -69,7 +69,7 @@ See :doc:`moduledev`.
...
@@ -69,7 +69,7 @@ See :doc:`moduledev`.
Examples of using modules with /usr/bin/ansible-playbook
Examples of using modules with /usr/bin/ansible-playbook
:doc:`developing_modules`
:doc:`developing_modules`
How to write your own modules
How to write your own modules
:doc:`api`
:doc:`
developing_
api`
Examples of using modules with the Python API
Examples of using modules with the Python API
`Mailing List <http://groups.google.com/group/ansible-project>`_
`Mailing List <http://groups.google.com/group/ansible-project>`_
Questions? Help? Ideas? Stop by the list on Google Groups
Questions? Help? Ideas? Stop by the list on Google Groups
...
...
docsite/latest/rst/playbooks.rst
View file @
df8b8fc4
...
@@ -325,7 +325,7 @@ can do this::
...
@@ -325,7 +325,7 @@ can do this::
:doc:`YAMLSyntax`
:doc:`YAMLSyntax`
Learn about YAML syntax
Learn about YAML syntax
:doc:`playbooks_bestpractices`
:doc:`playbooks_best
_
practices`
Various tips about managing playbooks in the real world
Various tips about managing playbooks in the real world
:doc:`modules`
:doc:`modules`
Learn about available modules
Learn about available modules
...
...
docsite/latest/rst/playbooks_best_practices
→
docsite/latest/rst/playbooks_best_practices
.rst
View file @
df8b8fc4
File moved
docsite/latest/rst/
intro
_variables.rst
→
docsite/latest/rst/
playbooks
_variables.rst
View file @
df8b8fc4
File moved
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