mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
minor win_template doc corrections
This commit is contained in:
parent
ad996f162b
commit
b51a1e175e
1 changed files with 6 additions and 2 deletions
|
@ -57,8 +57,12 @@ author: "Jon Hawkesworth (@jhawkesworth)"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Playbook Example (win_template can only be run inside a playbook)
|
# Playbook Example
|
||||||
- win_template: src=/mytemplates/file.conf.j2 dest=C:\\temp\\file.conf
|
- win_template:
|
||||||
|
src: /mytemplates/file.conf.j2
|
||||||
|
dest: C:\temp\file.conf
|
||||||
|
|
||||||
|
# Ad-hoc Example
|
||||||
|
ansible winhost -m win_template -a "src=/mytemplates/file.conf.j2 dest=c:/temp/file.conf"
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue