Permalink
Cannot retrieve contributors at this time
--- | |
- name: Ensure IIS webserver is installed | |
win_feature: | |
name: Web-Server | |
state: present | |
- name: Deploy default iisstart.htm file | |
template: | |
src: iisstart.j2 | |
dest: c:\inetpub\wwwroot\iisstart.htm | |
- name: Ensure IIS service is running | |
win_service: | |
name: W3SVC | |
start_mode: auto | |
state: started |