Commit Graph

153 Commits (9affb6ed378e4dbbe14e10bbc3c8152c52995dbc)

Author SHA1 Message Date
Brian Coca 9affb6ed37 added more usefull example for jinja2 overrides (this one is actually
used)

Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
11 years ago
Peter Salvatore 4c168abccc fix typo in synchronize module 11 years ago
Jens Rantil 38d0df65d8 module(file): Fail instead of exit on exception 11 years ago
Jens Rantil 4262e76aec module(file): state what went wrong on exception 11 years ago
Jens Rantil b8347a3144 `file` module: Don't catch `SystemExit`
This fixes issue #5159.
11 years ago
James Tanner f210e0c862 Fixes #5109 synchronize module ssh port
Added a parameter for dest_port and also check ansible_ssh_port inventory variable.
11 years ago
James Tanner 4f9aadcc07 Addresses #5023 Fix import comments 11 years ago
James Tanner 38edad70ac Fixes #5023 Convert all modules to use new snippet import pattern 11 years ago
Michael DeHaan 4c35b7f380 There's a cleaner way to do this, commit to module formatter pending.
Revert "No longer need to reference 'version_added' in docs for these, as this was quite a while ago."

This reverts commit ff0a41d446.
11 years ago
Michael DeHaan 9e4d71203d No longer need to reference 'version_added' in docs for these, as this was quite a while ago. 11 years ago
greenbrian 74a2bf4369 Update unarchive
Modified argument order provided to unzip command as the -o was being interpreted as a file.
11 years ago
Michael Scherer b3758f6ea4 Do not use construct not compatible with python 2.4, fix #5006 11 years ago
Joshua Lund 4b9227a673 Fixed a typo in the 'unarchive' module documentation 11 years ago
James Tanner aa0af14734 Fix pep8 errors in unarchive module 11 years ago
Michael DeHaan 08996d78d6 Add version_added to all modules missing version_added information, the docs formatter will now
raise errors when omitted, updated changelog with new modules.
11 years ago
James Tanner b982a3d353 Clean up erroneous lineinfile.orig file 11 years ago
James Tanner a3631638e5 Set required = True for src in unarchive module. 11 years ago
jctanner 4e76e6047d Merge pull request #4625 from pileofrogs/devel
unarchive module & action plugin
11 years ago
James Tanner 0f806cfdfa Merge pull request #4525 from ko-zu/ansible
Add a regexp parameter to assemble module to match or exclude filenames.
11 years ago
James Tanner 0f3093516d Merge pull request #4375 from pfalcon/ansible
copy: Implement recursive copying if src is a directory.
11 years ago
James Tanner 53ba890312 Fixes #4884 Do not prematurely exit from file module if src not defined 11 years ago
James Tanner 2e916df20f Add default for remote_src to assemble dostrings to avoid confusion 11 years ago
jctanner 28de7dab2f Merge pull request #4738 from bcoca/assemble_action_plugin
assemble can now use src from master/origin
11 years ago
James Tanner 1ad4f6e325 Fixes #4522 Document that comments in ini files will be discarded with the ini module 11 years ago
James Tanner 2c57b999fc Addresses #4801 Update file module docs to indicate behavior for relative src paths 11 years ago
jctanner f340f916b4 Merge pull request #4801 from sspans/devel
Add support for relative symlinks
11 years ago
James Tanner 39fdb934be Add doc example for lineinfile without a regexp parameter 11 years ago
James Tanner f8eea4e155 Merge pull request #4660 from kolbyjack/lineinfile_no_regexp 11 years ago
James Tanner 3ae95c8953 Fix merge conflict 11 years ago
James Tanner 7b3fbeee16 Addresses #4676 Add module notes about the behavior of sudo and the destination paths within the synchronize module. 11 years ago
James Tanner 403469bf19 Update synchronize docstrings for rsync_timeout parameter 11 years ago
James Tanner ae1248dee6 Add a timeout to the synchronize module to prevent infinite hangs while waiting on passwords for misconfigured users 11 years ago
sspans 9f322a5178 skip absolute path creation for old_src, not needed with the new relative links 11 years ago
sspans 4957115e51 only require absolute paths for hardlinks 11 years ago
James Tanner c3159fefab Fixes #4516 file module: check prev_state earlier and use that if state is not specified 11 years ago
Brian Coca 46b67e9b1f now assemble module is also action plugin and can use local source for
files
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
11 years ago
Daniel Koch fc8b88995a Clean up temp file left behind by assemble module 11 years ago
Michael DeHaan 772bd33a0f Revert "fix conversion from file to hardlink when force=yes"
This reverts commit 4d4518ed52.
11 years ago
Michael DeHaan c44aceb986 Merge pull request #4380 from joshkehn/lineinfile_validate
Added validate option to lineinfile
11 years ago
Michael DeHaan 0f18ac92b4 Merge pull request #4632 from simonsd/devel
refusing to convert between file and hard when force=yes
11 years ago
jctanner 3c3392a2d9 Merge pull request #4167 from tima/rsync3
synchronization module take 3
11 years ago
Jon Kolb 0e2478e639 Fixes #3847: lineinfile without regex 11 years ago
Dave Simons 1f86abcba6 fix conversion from file to hardlink when force=yes
Signed-off-by: Dave Simons <dave@inuits.eu>
11 years ago
Dylan Martin bc2b826fc4 unarchive - mvd docs to top of file 11 years ago
Dylan Martin d4a9e54f26 better docs 11 years ago
Dylan Martin 3420ffa94b unarchive module & action_plugin added 11 years ago
jctanner 9543169cca Merge pull request #4480 from joemaller/absent_path_fix
ignore src when file module state=absent
11 years ago
jctanner 94fac29bf7 Merge pull request #4428 from robparrott/devel
Properly handle DEFAULT section with ConfigParser in ini_file modules
11 years ago
Paul Sokolovsky 2b081b517e copy: Handle "no copy/propagate attrs only" for recursive mode well.
For this, add internal "original_basename" param to file module,
similar to copy module. (Param name is a bit misnormer now, should
be treated as "original basepath").
11 years ago
Paul Sokolovsky e2b38ff41a copy: Implement recursive copying if src is a directory.
If src param to copy is a directory, all files under it are collected
and pushed one by one to target. Source dir path handled in a way
simalar to rsync: if it ends with slash, only inside contents of
directory are copied to destination, otherwise the dir itself is
copied (with all contents of course). Original idea and implementation
by https://github.com/ansible/ansible/pull/1809 . Rewritten to address
review comments and simplify/correct logic.
11 years ago