Skip to content

Commit

Permalink
Add documentation for win_feature module
Browse files Browse the repository at this point in the history
  • Loading branch information
angstwad authored and sivel committed Jun 19, 2014
1 parent 8012fdc commit 61a0647
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions library/windows/win_feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
DOCUMENTATION = '''
---
module: win_get_url
version_added: "1.7"
short_description: Fetches a file from a given URL
description:
- Fetches a file from a URL and saves to locally
options:
name:
description:
- Names of roles or features to install as a single feature or a comma-separated list of features
required: true
default: null
aliases: []
state:
description:
- State of the features or roles on the system
required: false
choices:
- present
- absent
default: present
aliases: []
restart:
description:
- Restarts the computer automatically when installation is complete, if restarting is required by the roles or features installed.
choices:
- yes
- no
default: null
aliases: []
author: Paul Durivage
'''

EXAMPLES = '''
# This installs IIS.
# The names of features available for install can be run by running the following Powershell Command:
# PS C:\Users\Administrator> Import-Module ServerManager; Get-WindowsFeature
$ ansible -i hosts -m win_feature -a "name=Web-Server" all
$ ansible -i hosts -m win_feature -a "name=Web-Server,Web-Common-Http" all


# Playbook example
---
- name: Install IIS
hosts: all
gather_facts: false
tasks:
- name: Install IIS
win_feature:
name: "Web-Server"
state: absent
restart: yes
'''

0 comments on commit 61a0647

Please sign in to comment.