forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for win_feature module
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
''' |