.. _ansible.posix.patch_module:
*******************
ansible.posix.patch
*******************
**Apply patch files using the GNU patch tool**
Version added: 1.0.0
.. contents::
:local:
:depth: 1
Synopsis
--------
- Apply patch files using the GNU patch tool.
Parameters
----------
.. raw:: html
Parameter |
Choices/Defaults |
Comments |
backup
boolean
|
|
Passes --backup --version-control=numbered to patch, producing numbered backup copies.
|
basedir
path
|
|
Path of a base directory in which the patch file will be applied.
May be omitted when dest option is specified, otherwise required.
|
binary
boolean
|
|
Setting to yes will disable patch's heuristic for transforming CRLF line endings into LF.
Line endings of src and dest must match.
If set to no , patch will replace CRLF in src files on POSIX.
|
dest
path
|
|
Path of the file on the remote machine to be patched.
The names of the files to be patched are usually taken from the patch file, but if there's just one file to be patched it can specified with this option.
aliases: originalfile
|
ignore_whitespace
boolean
|
|
Setting to yes will ignore white space changes between patch and input..
|
remote_src
boolean
|
|
If no , it will search for src at originating/controller machine, if yes it will go to the remote/target machine for the src .
|
src
path
/ required
|
|
Path of the patch file as accepted by the GNU patch tool. If remote_src is 'no', the patch source file is looked up from the module's files directory.
aliases: patchfile
|
state
string
|
Choices:
- absent
present ←
|
Whether the patch should be applied or reverted.
|
strip
integer
|
Default:
0
|
Number that indicates the smallest prefix containing leading slashes that will be stripped from each file name found in the patch file.
For more information see the strip parameter of the GNU patch tool.
|