2014-09-26 01:01:01 +00:00
|
|
|
# this is a virtual module that is entirely implemented server side
|
|
|
|
|
2015-07-04 03:57:53 +00:00
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-03-14 16:07:22 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.0',
|
|
|
|
'status': ['stableinterface'],
|
|
|
|
'supported_by': 'core'}
|
|
|
|
|
2017-03-24 02:47:10 +00:00
|
|
|
DOCUMENTATION = r'''
|
2014-09-26 01:01:01 +00:00
|
|
|
---
|
|
|
|
module: template
|
|
|
|
version_added: historical
|
2017-07-23 05:12:31 +00:00
|
|
|
short_description: Templates a file out to a remote server
|
2014-09-26 01:01:01 +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/)).
|
2017-02-06 17:18:17 +00:00
|
|
|
- "Six additional variables can be used in templates:
|
|
|
|
C(ansible_managed) (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 template file and the owner uid.
|
|
|
|
C(template_host) contains the node name of the template's machine.
|
|
|
|
C(template_uid) the numeric user id of the owner.
|
|
|
|
C(template_path) the path of the template.
|
|
|
|
C(template_fullpath) is the absolute path of the template.
|
|
|
|
C(template_run_date) is the date that the template was rendered."
|
2014-09-26 01:01:01 +00:00
|
|
|
options:
|
|
|
|
src:
|
|
|
|
description:
|
2016-04-10 16:51:37 +00:00
|
|
|
- Path of a Jinja2 formatted template on the Ansible controller. This can be a relative or absolute path.
|
2014-09-26 01:01:01 +00:00
|
|
|
required: true
|
|
|
|
dest:
|
|
|
|
description:
|
|
|
|
- Location to render the template to on the remote machine.
|
|
|
|
required: true
|
|
|
|
backup:
|
|
|
|
description:
|
|
|
|
- Create a backup file including the timestamp information so you can get
|
|
|
|
the original file back if you somehow clobbered it incorrectly.
|
2017-07-23 05:12:31 +00:00
|
|
|
type: bool
|
|
|
|
default: 'no'
|
2017-03-24 02:47:10 +00:00
|
|
|
newline_sequence:
|
|
|
|
description:
|
|
|
|
- Specify the newline sequence to use for templating files.
|
|
|
|
choices: [ '\n', '\r', '\r\n' ]
|
|
|
|
default: '\n'
|
2017-05-04 19:53:00 +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.
|
|
|
|
default: '{%'
|
2017-05-04 19:53:00 +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.
|
|
|
|
default: '%}'
|
2017-05-04 19:53:00 +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.
|
|
|
|
default: '{{'
|
2017-05-04 19:53:00 +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.
|
|
|
|
default: '}}'
|
2017-05-04 19:53:00 +00:00
|
|
|
version_added: '2.4'
|
2017-03-24 02:47:10 +00:00
|
|
|
trim_blocks:
|
|
|
|
description:
|
|
|
|
- If this is set to True the first newline after a block is removed (block, not variable tag!).
|
2017-07-23 05:12:31 +00:00
|
|
|
type: bool
|
|
|
|
default: 'no'
|
2017-05-04 19:53:00 +00:00
|
|
|
version_added: '2.4'
|
2015-06-25 19:40:58 +00:00
|
|
|
force:
|
|
|
|
description:
|
|
|
|
- the default is C(yes), which will replace the remote file when contents
|
|
|
|
are different than the source. If C(no), the file will only be transferred
|
|
|
|
if the destination does not exist.
|
2017-07-23 05:12:31 +00:00
|
|
|
type: bool
|
|
|
|
default: 'yes'
|
2014-09-26 01:01:01 +00:00
|
|
|
notes:
|
2017-03-24 02:47:10 +00:00
|
|
|
- For Windows you can use M(win_template) which uses '\r\n' as C(newline_sequence).
|
2017-02-06 17:18:17 +00:00
|
|
|
- Including a string that uses a date in the template will result in the template being marked 'changed' each time
|
2014-09-26 01:01:01 +00:00
|
|
|
- "Since Ansible version 0.9, templates are loaded with C(trim_blocks=True)."
|
2016-06-15 21:01:46 +00:00
|
|
|
- "Also, you can override jinja2 settings by adding a special header to template file.
|
2017-03-24 02:47:10 +00:00
|
|
|
i.e. C(#jinja2:variable_start_string:'[%', variable_end_string:'%]', trim_blocks: False)
|
2016-06-15 21:01:46 +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."
|
2017-07-23 05:12:31 +00:00
|
|
|
- You can use the C(copy) module with the C(content:) option if you prefer the template inline,
|
|
|
|
as part of the playbook.
|
2015-06-15 19:53:30 +00:00
|
|
|
author:
|
2016-12-08 14:38:05 +00:00
|
|
|
- Ansible Core Team
|
2015-06-15 19:53:30 +00:00
|
|
|
- Michael DeHaan
|
2016-12-08 02:33:38 +00:00
|
|
|
extends_documentation_fragment:
|
|
|
|
- files
|
|
|
|
- validate
|
2014-09-26 01:01:01 +00:00
|
|
|
'''
|
|
|
|
|
2017-03-24 02:47:10 +00:00
|
|
|
EXAMPLES = r'''
|
2014-09-26 01:01:01 +00:00
|
|
|
# Example from Ansible Playbooks
|
2016-10-12 21:43:54 +00:00
|
|
|
- template:
|
|
|
|
src: /mytemplates/foo.j2
|
|
|
|
dest: /etc/file.conf
|
|
|
|
owner: bin
|
|
|
|
group: wheel
|
|
|
|
mode: 0644
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
# The same example, but using symbolic modes equivalent to 0644
|
2016-10-12 21:43:54 +00:00
|
|
|
- template:
|
|
|
|
src: /mytemplates/foo.j2
|
|
|
|
dest: /etc/file.conf
|
|
|
|
owner: bin
|
|
|
|
group: wheel
|
|
|
|
mode: "u=rw,g=r,o=r"
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2017-03-24 02:47:10 +00:00
|
|
|
# Create a DOS-style text file from a template
|
|
|
|
- template:
|
|
|
|
src: config.ini.j2
|
|
|
|
dest: /share/windows/config.ini
|
|
|
|
newline_sequence: '\r\n'
|
|
|
|
|
2014-09-26 01:01:01 +00:00
|
|
|
# Copy a new "sudoers" file into place, after passing validation with visudo
|
2016-10-12 21:43:54 +00:00
|
|
|
- template:
|
|
|
|
src: /mine/sudoers
|
|
|
|
dest: /etc/sudoers
|
|
|
|
validate: 'visudo -cf %s'
|
2016-12-15 23:36:32 +00:00
|
|
|
|
2017-02-10 00:40:07 +00:00
|
|
|
# Update sshd configuration safely, avoid locking yourself out
|
2016-12-15 23:36:32 +00:00
|
|
|
- template:
|
|
|
|
src: etc/ssh/sshd_config.j2
|
2017-02-10 00:40:07 +00:00
|
|
|
dest: /etc/ssh/sshd_config
|
2016-12-15 23:36:32 +00:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: '0600'
|
2017-01-16 14:12:34 +00:00
|
|
|
validate: /usr/sbin/sshd -t -f %s
|
2016-12-15 23:36:32 +00:00
|
|
|
backup: yes
|
2014-09-26 01:01:01 +00:00
|
|
|
'''
|