Merge pull request #6706 from geerlingguy/devel
Fix template validation docs and example.
This commit is contained in:
commit
2ce77b8ccf
1 changed files with 3 additions and 3 deletions
|
@ -40,7 +40,7 @@ options:
|
||||||
default: "no"
|
default: "no"
|
||||||
validate:
|
validate:
|
||||||
description:
|
description:
|
||||||
- validation to run before copying into place
|
- The validation command to run before copying into place. The path to the file to validate is passed in via '%s' which must be present as in the visudo example below. (added in Ansible 1.2)
|
||||||
required: false
|
required: false
|
||||||
default: ""
|
default: ""
|
||||||
version_added: "1.2"
|
version_added: "1.2"
|
||||||
|
@ -63,6 +63,6 @@ EXAMPLES = '''
|
||||||
# Example from Ansible Playbooks
|
# Example from Ansible Playbooks
|
||||||
- template: src=/mytemplates/foo.j2 dest=/etc/file.conf owner=bin group=wheel mode=0644
|
- template: src=/mytemplates/foo.j2 dest=/etc/file.conf owner=bin group=wheel mode=0644
|
||||||
|
|
||||||
# Copy a new "sudoers file into place, after passing validation with visudo
|
# Copy a new "sudoers" file into place, after passing validation with visudo
|
||||||
- action: template src=/mine/sudoers dest=/etc/sudoers validate='visudo -cf %s'
|
- template: src=/mine/sudoers dest=/etc/sudoers validate='visudo -cf %s'
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue