summaryrefslogtreecommitdiff
path: root/files
Commit message (Collapse)AuthorAgeFilesLines
...
* files/blockinfile.py : ERROR: version_added for new option (follow) should ↵Ritesh Khadgaray2016-02-181-0/+1
| | | | be 2.1. Currently 0.0
* added follow docs back, removed from sharedBrian Coca2016-02-151-0/+6
|
* Update 'patch' documentation for src, remote_src, backup and binary.Charles Ferguson2015-11-271-8/+10
| | | | | | | | | | | | | | | | | | | | The patch module has a few missing items, and inconsistencies, in its documentation. A few of which are addressed here. Within Ansible documentation, the choices for boolean values are commonly 'yes', and 'no'. We standardise the options on that. 'remote_src' documentation uses 'False' and 'True' for its documentation, so these have been updated in both the choices and default. 'src' documentation refers to 'remote_src', so is updated to use the 'no' choice. 'backup' did not describe its options and default at all, so we add them. 'binary' default used 'False', but specified the type as 'bool' which is implicitly documented as 'yes'/'no', so we make that 'no' as well.
* New module: blockinfileYAEGASHI Takeshi2015-10-131-0/+292
|
* Merge pull request #339 from rbu/patch-binaryBrian Coca2015-07-041-5/+16
|\ | | | | patch: Add binary option that maps to --binary to handle CLRF patches
| * patch: Add binary option that maps to --binary to handle CLRF patchesRobert Buchholz2015-06-201-5/+16
| |
| * added version added to patch's bacukpBrian Coca2015-06-021-0/+1
| |
| * patch module: 'backup_copy' parameter renamed to 'backup'Q2015-06-021-4/+5
| |
| * Update patch.pyQ2015-05-301-3/+14
| |
* | Changes to author formatting, remove emailsGreg DeKoenigsberg2015-06-161-2/+2
| |
* | added version added to patch's bacukpBrian Coca2015-06-161-0/+1
| |
* | patch module: 'backup_copy' parameter renamed to 'backup'Q2015-06-161-4/+5
| |
* | Update patch.pyQ2015-06-161-3/+14
|/
* removed executable bitBrian Coca2015-05-211-0/+0
|
* more string correctionsBrian Coca2015-05-141-3/+3
|
* Adding author's github idGreg DeKoenigsberg2015-05-131-1/+3
|
* Fix up modules that have python24 syntax errorMatt Martz2015-05-111-1/+1
|
* Expand user in path, fix #385Michael Scherer2015-04-141-0/+1
|
* [patch] Update documentation for src parameter.Sébastien Gross2015-03-201-1/+3
|
* [patch] Make sure the absolute patch file is passed to the patch command.Sébastien Gross2015-03-201-0/+3
| | | | | | | | | According the patch(1) manpage: The --directory option change to the directory dir immediately, before doing anything else. Thus if file is not relative to dir and making file absolute ensure that patch will find it.
* [patch] Make sure patch command is found on remote system.Sébastien Gross2015-03-201-0/+2
|
* Variable name typoAndré Luiz dos Santos2015-02-281-1/+1
|
* added version to patch and remote_src to allow for controlling if src is on ↵Brian Coca2015-02-091-4/+13
| | | | master or target
* Add new module "patch"Jakub Jirutka2015-02-092-0/+150
|
* Move modules into subdirectory.Michael DeHaan2014-09-2613-2962/+0
|
* Merge branch 'dmage-devel' into develJames Cammarata2014-09-221-2/+2
|\
| * Merge branch 'devel' of https://github.com/dmage/ansible into dmage-develJames Cammarata2014-09-221-2/+2
| |\
| | * Fix #7711Oleg Bulatov2014-09-011-2/+2
| | | | | | | | | | | | | | | | | | Fix relative symlinks creation in file module Signed-off-by: Oleg Bulatov <oleg@bulatov.me>
* | | Make file module work on python 2.4, fix #9080Michael Scherer2014-09-211-1/+1
|/ / | | | | | | | | Python 2.4 do not support "except ... as ..." construct, so revert back to the older syntax.
* | Adding "follow" param for file/copy optionsJames Cammarata2014-09-162-4/+13
| | | | | | | | | | | | | | | | Also modifies the template action plugin to use this new param when executing the file/copy modules for templating so that links are preserved correctly. Fixes #8998
* | Do not keep a new file if we fail to set its attributes.Toshio Kuratomi2014-09-151-2/+10
| |
* | Fix quoting issues in lineinfile for individual single-quotesJames Cammarata2014-09-111-2/+7
|/ | | | Fixes #8806
* Docs updates to add examples for symbolic modesJames Cammarata2014-08-264-4/+18
| | | | Also fixes missing doc fragments missing in template and assemble
* now acl expands tildesBrian Coca2014-08-241-1/+1
|
* Merge pull request #8441 from willthames/unarchive_dest_fixMichael DeHaan2014-08-221-6/+4
|\ | | | | | | Unarchive should work when parent directory is not writable
| * Unarchive should work when parent directory is not writableWill Thames2014-08-071-6/+4
| | | | | | | | | | | | | | Correct unarchive so that the checks for writeability are sensible. Added a test for when parent directory is not writable
* | Merge branch 'relative-path-fix' of https://github.com/major/ansible into ↵James Cammarata2014-08-211-1/+8
|\ \ | | | | | | | | | major-relative-path-fix
| * | File module cannot create relative pathsMajor Hayden2014-08-211-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When trying to create a directory relative to the current working directory, a directory is created at the root of the filesystem instead. This patch ensures that directories specified with relative paths will be created in the current working directory. Fully qualified paths aren't affected Signed-off-by: Major Hayden <major@mhtx.net>
* | | Fix check mode issues with copy moduleJames Cammarata2014-08-181-0/+1
| | | | | | | | | | | | Fixes #8639
* | | Add option to disable ControlPath to ssh options during rsyncJames Cammarata2014-08-181-4/+5
|/ / | | | | | | Fixes #8473
* | Update docs for copy directory_mode param per #8572James Cammarata2014-08-121-2/+3
| |
* | Copy recursion works when source is a parameter, there is no parameter ↵Michael DeHaan2014-08-111-6/+0
| | | | | | | | 'recurse' here.
* | Make sure we only use unquote on quoted lines in lineinfile when neededJames Cammarata2014-08-111-5/+13
| |
* | Unquote lines that were quoted for safety during eval in lineinfileJames Cammarata2014-08-111-1/+2
| | | | | | | | Fixes #8535
* | Issue 8502: Fixed bug where failed when permissions weren't specified.Piffey Parlance2014-08-091-1/+4
| |
* | Fix documentation builds.Michael DeHaan2014-08-081-2/+1
| |
* | Merge branch 'spelling' of git://github.com/cgar/ansible into develMichael DeHaan2014-08-082-2/+2
|\ \ | | | | | | | | | | | | | | | Conflicts: docsite/rst/guide_rax.rst plugins/callbacks/mail.py
| * | multiple spelling error changesCarlos E. Garcia2014-04-292-2/+2
| | |
* | | Merge pull request #7312 from bcoca/unarchive_docsMichael DeHaan2014-08-081-1/+2
|\ \ \ | |_|/ |/| | | | | reworded copy option docs
| * | reworded copy option docs to be clearerBrian Coca2014-05-061-1/+2
| | |