mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
Groff
39 lines
1.4 KiB
Groff
12 years ago
|
.TH ANSIBLE.ASSEMBLE 5 "2012-10-02" "0.8" "ANSIBLE MODULES"
|
||
|
." generated from library/assemble
|
||
|
.SH NAME
|
||
|
assemble \- Assembles a configuration file from fragments
|
||
|
." ------ DESCRIPTION
|
||
|
.SH DESCRIPTION
|
||
|
.PP
|
||
|
Assembles a configuration file from fragments. Often a particular program will take a single configuration file and does not support a \fCconf.d\fR style structure where it is easy to build up the configuration from multiple sources. Assemble will take a directory of files that have already been transferred to the system, and concatenate them together to produce a destination file. Files are assembled in string sorting order. Puppet calls this idea \fIfragments\fR.
|
||
|
." ------ OPTIONS
|
||
|
."
|
||
|
."
|
||
|
.SH OPTIONS
|
||
|
|
||
|
.IP dest
|
||
|
A file to create using the concatenation of all of the source files.(required)
|
||
|
.IP src
|
||
|
An already existing directory full of source files.(required)
|
||
|
.IP backup
|
||
|
Create a backup file (if \fCyes\fR), including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly.
|
||
|
.IR Choices :
|
||
|
yes,no. (default: no)
|
||
|
.IP others
|
||
|
all arguments accepted by the \fIfile\fR module also work here."
|
||
|
."
|
||
|
." ------ NOTES
|
||
|
."
|
||
|
."
|
||
|
." ------ EXAMPLES
|
||
|
.SH EXAMPLES
|
||
|
.PP
|
||
|
.nf
|
||
|
assemble src=/etc/someapp/fragments dest=/etc/someapp/someapp.conf
|
||
|
.fi
|
||
|
." ------- AUTHOR
|
||
|
.SH AUTHOR
|
||
|
Stephen Fromm
|
||
|
.SH SEE ALSO
|
||
|
.IR ansible (1),
|
||
|
.I http://ansible.github.com/modules.html#assemble
|