16 lines
393 B
YAML
16 lines
393 B
YAML
|
|
- name: Update site 1 IIS web application
|
||
|
|
win_iis_website:
|
||
|
|
name: "{{ iis_site_name_1 }}"
|
||
|
|
physical_path: "{{ target_path }}"
|
||
|
|
|
||
|
|
- name: Update site 2 IIS web application
|
||
|
|
win_iis_website:
|
||
|
|
name: "{{ iis_site_name_2 }}"
|
||
|
|
physical_path: "{{ target_path }}"
|
||
|
|
|
||
|
|
# - name: Restart IIS site to apply changes
|
||
|
|
# win_iis_website:
|
||
|
|
# name: "{{ iis_site_name }}"
|
||
|
|
# state: restarted
|
||
|
|
|