mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Improve YAML examples - windows/win_iis_webapplication.py (#19402)
This commit is contained in:
parent
f57418c2c1
commit
83d0f621da
1 changed files with 7 additions and 3 deletions
|
@ -66,7 +66,11 @@ options:
|
||||||
author: Henrik Wallström
|
author: Henrik Wallström
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = r'''
|
||||||
$ ansible -i hosts -m win_iis_webapplication -a "name=api site=acme physical_path=c:\\apps\\acme\\api" host
|
- name: Add ACME webapplication on IIS
|
||||||
|
win_iis_webapplication:
|
||||||
|
name: api
|
||||||
|
site: acme
|
||||||
|
state: present
|
||||||
|
physical_path: C:\apps\acme\api
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Add table
Reference in a new issue