parameter |
required |
default |
choices |
comments |
backup |
no |
no |
|
Create a backup file (if yes ), including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly. |
delimiter |
no |
|
|
A delimiter to seperate the file contents. (added in Ansible 1.4) |
dest |
yes |
|
|
A file to create using the concatenation of all of the source files. |
others |
no |
|
|
all arguments accepted by the file module also work here |
regexp |
no |
|
|
Assemble files only if regex matches the filename. If not set, all files are assembled. All "" (backslash) must be escaped as "\\" to comply yaml syntax. Uses Python regular expressions; see http://docs.python.org/2/library/re.html. |
remote_src |
no |
True |
|
If False, it will search for src at originating/master machine, if True it will go to the remote/target machine for the src. Default is True. (added in Ansible 1.4) |
src |
yes |
|
|
An already existing directory full of source files. |