2018-02-25 02:09:54 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
2015-05-22 18:25:05 +00:00
|
|
|
|
2018-02-25 02:09:54 +00:00
|
|
|
# this is a virtual module that is entirely implemented server side
|
2015-07-04 03:57:53 +00:00
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2017-03-14 16:07:22 +00:00
|
|
|
'status': ['stableinterface'],
|
|
|
|
'supported_by': 'core'}
|
|
|
|
|
2015-11-06 17:31:20 +00:00
|
|
|
DOCUMENTATION = r'''
|
2015-05-22 18:25:05 +00:00
|
|
|
---
|
|
|
|
module: win_template
|
2015-06-10 17:53:22 +00:00
|
|
|
version_added: "1.9.2"
|
2018-02-25 02:09:54 +00:00
|
|
|
short_description: Templates a file out to a remote server
|
2015-05-22 18:25:05 +00:00
|
|
|
description:
|
|
|
|
- Templates are processed by the Jinja2 templating language
|
|
|
|
(U(http://jinja.pocoo.org/docs/)) - documentation on the template
|
|
|
|
formatting can be found in the Template Designer Documentation
|
|
|
|
(U(http://jinja.pocoo.org/docs/templates/)).
|
2019-02-19 08:45:19 +00:00
|
|
|
- "Additional variables can be used in templates: C(ansible_managed)
|
2015-05-22 18:25:05 +00:00
|
|
|
(configurable via the C(defaults) section of C(ansible.cfg)) contains a string
|
|
|
|
which can be used to describe the template name, host, modification time of the
|
2019-02-19 08:45:19 +00:00
|
|
|
template file and the owner uid."
|
|
|
|
- "C(template_host) contains the node name of the template's machine."
|
|
|
|
- "C(template_uid) the owner."
|
|
|
|
- "C(template_path) the absolute path of the template."
|
|
|
|
- "C(template_fullpath) is the absolute path of the template."
|
|
|
|
- "C(template_destpath) is the path of the template on the remote system (added in 2.8)."
|
|
|
|
- "C(template_run_date) is the date that the template was rendered."
|
|
|
|
- "Note that including a string that uses a date in the template will result in the template being marked 'changed' each time."
|
2019-01-03 16:50:44 +00:00
|
|
|
- For other platforms you can use M(template) which uses '\n' as C(newline_sequence).
|
2015-05-22 18:25:05 +00:00
|
|
|
options:
|
|
|
|
src:
|
|
|
|
description:
|
|
|
|
- Path of a Jinja2 formatted template on the local server. This can be a relative or absolute path.
|
2019-01-03 16:50:44 +00:00
|
|
|
type: path
|
2018-02-25 02:09:54 +00:00
|
|
|
required: yes
|
2015-05-22 18:25:05 +00:00
|
|
|
dest:
|
|
|
|
description:
|
|
|
|
- Location to render the template to on the remote machine.
|
2019-02-25 01:37:25 +00:00
|
|
|
type: path
|
2018-02-25 02:09:54 +00:00
|
|
|
required: yes
|
2019-02-25 01:37:25 +00:00
|
|
|
backup:
|
|
|
|
description:
|
|
|
|
- Determine whether a backup should be created.
|
|
|
|
- When set to C(yes), create a backup file including the timestamp information
|
|
|
|
so you can get the original file back if you somehow clobbered it incorrectly.
|
|
|
|
type: bool
|
|
|
|
default: no
|
|
|
|
version_added: '2.8'
|
2017-03-24 02:47:10 +00:00
|
|
|
newline_sequence:
|
|
|
|
description:
|
|
|
|
- Specify the newline sequence to use for templating files.
|
2019-01-03 16:50:44 +00:00
|
|
|
type: str
|
2017-03-24 02:47:10 +00:00
|
|
|
choices: [ '\n', '\r', '\r\n' ]
|
|
|
|
default: '\r\n'
|
2017-06-30 20:58:56 +00:00
|
|
|
version_added: '2.4'
|
2017-03-24 02:47:10 +00:00
|
|
|
block_start_string:
|
|
|
|
description:
|
|
|
|
- The string marking the beginning of a block.
|
2019-01-03 16:50:44 +00:00
|
|
|
type: str
|
2017-03-24 02:47:10 +00:00
|
|
|
default: '{%'
|
2017-06-30 20:58:56 +00:00
|
|
|
version_added: '2.4'
|
2017-03-24 02:47:10 +00:00
|
|
|
block_end_string:
|
|
|
|
description:
|
|
|
|
- The string marking the end of a block.
|
2019-01-03 16:50:44 +00:00
|
|
|
type: str
|
2017-03-24 02:47:10 +00:00
|
|
|
default: '%}'
|
2017-06-30 20:58:56 +00:00
|
|
|
version_added: '2.4'
|
2017-03-24 02:47:10 +00:00
|
|
|
variable_start_string:
|
|
|
|
description:
|
|
|
|
- The string marking the beginning of a print statement.
|
2019-01-03 16:50:44 +00:00
|
|
|
type: str
|
2017-03-24 02:47:10 +00:00
|
|
|
default: '{{'
|
2017-06-30 20:58:56 +00:00
|
|
|
version_added: '2.4'
|
2017-03-24 02:47:10 +00:00
|
|
|
variable_end_string:
|
|
|
|
description:
|
|
|
|
- The string marking the end of a print statement.
|
2019-01-03 16:50:44 +00:00
|
|
|
type: str
|
2017-03-24 02:47:10 +00:00
|
|
|
default: '}}'
|
2017-06-30 20:58:56 +00:00
|
|
|
version_added: '2.4'
|
2017-03-24 02:47:10 +00:00
|
|
|
trim_blocks:
|
|
|
|
description:
|
2018-02-25 02:09:54 +00:00
|
|
|
- If this is set to C(yes) the first newline after a block is removed (block, not variable tag!).
|
|
|
|
type: bool
|
2019-01-03 16:50:44 +00:00
|
|
|
default: no
|
2017-06-30 20:58:56 +00:00
|
|
|
version_added: '2.4'
|
2017-03-24 02:47:10 +00:00
|
|
|
force:
|
|
|
|
description:
|
2018-02-25 02:09:54 +00:00
|
|
|
- If C(yes), will replace the remote file when contents are different
|
|
|
|
from the source.
|
|
|
|
- If C(no), the file will only be transferred if the destination does
|
|
|
|
not exist.
|
|
|
|
type: bool
|
2019-01-03 16:50:44 +00:00
|
|
|
default: yes
|
2017-06-30 20:58:56 +00:00
|
|
|
version_added: '2.4'
|
2015-05-22 18:25:05 +00:00
|
|
|
notes:
|
2019-01-03 16:50:44 +00:00
|
|
|
- Templates are loaded with C(trim_blocks=yes).
|
2015-05-29 01:57:13 +00:00
|
|
|
- Beware fetching files from windows machines when creating templates
|
|
|
|
because certain tools, such as Powershell ISE, and regedit's export facility
|
2015-06-11 15:35:49 +00:00
|
|
|
add a Byte Order Mark as the first character of the file, which can cause tracebacks.
|
2017-03-24 02:47:10 +00:00
|
|
|
- To find Byte Order Marks in files, use C(Format-Hex <file> -Count 16) on Windows, and use C(od -a -t x1 -N 16 <file>) on Linux.
|
|
|
|
- "Also, you can override jinja2 settings by adding a special header to template file.
|
2018-02-25 02:09:54 +00:00
|
|
|
i.e. C(#jinja2:variable_start_string:'[%', variable_end_string:'%]', trim_blocks: no)
|
2017-03-24 02:47:10 +00:00
|
|
|
which changes the variable interpolation markers to [% var %] instead of {{ var }}.
|
|
|
|
This is the best way to prevent evaluation of things that look like, but should not be Jinja2.
|
|
|
|
raw/endraw in Jinja2 will not work as you expect because templates in Ansible are recursively evaluated."
|
2019-02-25 01:37:25 +00:00
|
|
|
- You can use the M(win_copy) module with the C(content:) option if you prefer the template inline,
|
|
|
|
as part of the playbook.
|
|
|
|
|
2018-12-15 02:23:59 +00:00
|
|
|
seealso:
|
|
|
|
- module: template
|
|
|
|
- module: win_copy
|
2018-02-25 02:09:54 +00:00
|
|
|
author:
|
|
|
|
- Jon Hawkesworth (@jhawkesworth)
|
2015-05-22 18:25:05 +00:00
|
|
|
'''
|
|
|
|
|
2016-12-15 23:04:49 +00:00
|
|
|
EXAMPLES = r'''
|
|
|
|
- name: Create a file from a Jinja2 template
|
|
|
|
win_template:
|
2016-07-05 22:49:13 +00:00
|
|
|
src: /mytemplates/file.conf.j2
|
2018-02-25 02:09:54 +00:00
|
|
|
dest: C:\Temp\file.conf
|
2017-03-24 02:47:10 +00:00
|
|
|
|
|
|
|
- name: Create a Unix-style file from a Jinja2 template
|
|
|
|
win_template:
|
|
|
|
src: unix/config.conf.j2
|
|
|
|
dest: C:\share\unix\config.conf
|
|
|
|
newline_sequence: '\n'
|
2019-02-25 01:37:25 +00:00
|
|
|
backup: yes
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = r'''
|
|
|
|
backup_file:
|
|
|
|
description: Name of the backup file that was created.
|
|
|
|
returned: if backup=yes
|
|
|
|
type: str
|
|
|
|
sample: C:\Path\To\File.txt.11540.20150212-220915.bak
|
2015-05-22 18:25:05 +00:00
|
|
|
'''
|