Manpage tweaks, docs rebuild
This commit is contained in:
parent
efee2e2630
commit
267b29cec7
3 changed files with 20 additions and 14 deletions
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: ansible-playbook
|
.\" Title: ansible-playbook
|
||||||
.\" Author: [see the "AUTHOR" section]
|
.\" Author: [see the "AUTHOR" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
||||||
.\" Date: 04/02/2013
|
.\" Date: 05/29/2013
|
||||||
.\" Manual: System administration commands
|
.\" Manual: System administration commands
|
||||||
.\" Source: Ansible 1.2
|
.\" Source: Ansible 1.2
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "ANSIBLE\-PLAYBOOK" "1" "04/02/2013" "Ansible 1\&.2" "System administration commands"
|
.TH "ANSIBLE\-PLAYBOOK" "1" "05/29/2013" "Ansible 1\&.2" "System administration commands"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * set default formatting
|
.\" * set default formatting
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
@ -51,8 +51,8 @@ to the inventory hosts file, which defaults to
|
||||||
.RS 4
|
.RS 4
|
||||||
The
|
The
|
||||||
\fIDIRECTORY\fR
|
\fIDIRECTORY\fR
|
||||||
to load modules from\&. The default is
|
search path to load modules from\&. The default is
|
||||||
\fI/usr/share/ansible\fR\&.
|
\fI/usr/share/ansible\fR\&. This can also be set with the ANSIBLE_LIBRARY environment variable\&.
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
\fB\-e\fR \fIVARS\fR, \fB\-\-extra\-vars=\fR\fIVARS\fR
|
\fB\-e\fR \fIVARS\fR, \fB\-\-extra\-vars=\fR\fIVARS\fR
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: ansible
|
.\" Title: ansible
|
||||||
.\" Author: [see the "AUTHOR" section]
|
.\" Author: [see the "AUTHOR" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
||||||
.\" Date: 04/02/2013
|
.\" Date: 05/29/2013
|
||||||
.\" Manual: System administration commands
|
.\" Manual: System administration commands
|
||||||
.\" Source: Ansible 1.2
|
.\" Source: Ansible 1.2
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "ANSIBLE" "1" "04/02/2013" "Ansible 1\&.2" "System administration commands"
|
.TH "ANSIBLE" "1" "05/29/2013" "Ansible 1\&.2" "System administration commands"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * set default formatting
|
.\" * set default formatting
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
@ -69,8 +69,8 @@ Execute the module called
|
||||||
.RS 4
|
.RS 4
|
||||||
The
|
The
|
||||||
\fIDIRECTORY\fR
|
\fIDIRECTORY\fR
|
||||||
to load modules from\&. The default is
|
search path to load modules from\&. The default is
|
||||||
\fI/usr/share/ansible\fR\&.
|
\fI/usr/share/ansible\fR\&. This can also be set with the ANSIBLE_LIBRARY environment variable\&.
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
\fB\-a\fR \'\fIARGUMENTS\fR\', \fB\-\-args=\fR\'\fIARGUMENTS\fR\'
|
\fB\-a\fR \'\fIARGUMENTS\fR\', \fB\-\-args=\fR\'\fIARGUMENTS\fR\'
|
||||||
|
|
|
@ -52,7 +52,7 @@ By registering the return its then possible to dynamically create a host group c
|
||||||
tasks:
|
tasks:
|
||||||
- name: Add all instance public IPs to host group
|
- name: Add all instance public IPs to host group
|
||||||
local_action: add_host hostname={{ item.public_ip }} groupname=ec2hosts
|
local_action: add_host hostname={{ item.public_ip }} groupname=ec2hosts
|
||||||
with_items: '{{ ec2.instances }}'
|
with_items: ec2.instances
|
||||||
|
|
||||||
With the host group now created, the second play in your provision playbook might now have some configuration steps::
|
With the host group now created, the second play in your provision playbook might now have some configuration steps::
|
||||||
|
|
||||||
|
@ -129,16 +129,22 @@ And in your playbook::
|
||||||
Pending Information
|
Pending Information
|
||||||
===================
|
===================
|
||||||
|
|
||||||
In the future look here for more topics on:
|
In the future look here for more topics.
|
||||||
|
|
||||||
Using Ansible's S3 modules
|
Using Ansible's S3 module
|
||||||
--------------------------
|
`````````````````````````
|
||||||
|
|
||||||
|
these modules are documented on the module page, more walk throughs coming soon
|
||||||
|
|
||||||
Using Ansible's Elastic Load Balancer Support
|
Using Ansible's Elastic Load Balancer Support
|
||||||
---------------------------------------------
|
`````````````````````````````````````````````
|
||||||
|
|
||||||
|
these modules are documented on the module page, more walk throughs coming soon
|
||||||
|
|
||||||
Using Ansible's Cloud Formation Module
|
Using Ansible's Cloud Formation Module
|
||||||
--------------------------------------
|
``````````````````````````````````````
|
||||||
|
|
||||||
|
these modules are documented on the module page, more walk throughs coming soon
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue