1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Added a delimiter example and a version_added string for assemble

This commit is contained in:
James Cammarata 2013-09-23 15:32:36 -05:00
parent a97872906f
commit d647c5dc00

View file

@ -59,6 +59,7 @@ options:
delimiter:
description:
- A delimiter to seperate the file contents.
version_added: "1.4"
required: false
default: null
others:
@ -71,6 +72,9 @@ author: Stephen Fromm
EXAMPLES = '''
# Example from Ansible Playbooks
- assemble: src=/etc/someapp/fragments dest=/etc/someapp/someapp.conf
# When a delimiter is specified, it will be inserted in between each fragment
- assemble: src=/etc/someapp/fragments dest=/etc/someapp/someapp.conf delimiter='### START FRAGMENT ###'
'''
# ===========================================