mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 11:50:18 +01:00
14 lines
313 B
YAML
14 lines
313 B
YAML
---
|
|
# This playbook installs and enables IIS on Windows hosts
|
|
|
|
- name: Install IIS
|
|
hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Install IIS
|
|
win_feature:
|
|
name: "Web-Server"
|
|
state: present
|
|
restart: yes
|
|
include_sub_features: yes
|
|
include_management_tools: yes
|