11 lines
254 B
YAML
11 lines
254 B
YAML
|
|
- name: Update IIS web application path
|
||
|
|
win_iis_website:
|
||
|
|
name: "{{ iis_site_name }}"
|
||
|
|
physical_path: "{{ target_path }}"
|
||
|
|
|
||
|
|
# - name: Restart IIS site to apply changes
|
||
|
|
# win_iis_website:
|
||
|
|
# name: "{{ iis_site_name }}"
|
||
|
|
# state: restarted
|
||
|
|
|