Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
25766a0d
Commit
25766a0d
authored
Jun 18, 2014
by
Paul Durivage
Committed by
Matt Martz
Jun 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add prelim version of win_feature module (for installing packages, roles, features, etc)
parent
e621fec7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
0 deletions
+77
-0
library/windows/win_feature.ps1
+77
-0
No files found.
library/windows/win_feature.ps1
0 → 100644
View file @
25766a0d
#!powershell
# This file is part of Ansible.
#
# Copyright 2014, Paul Durivage <paul.durivage@rackspace.com>
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# WANT_JSON
# POWERSHELL_COMMON
Import-Module Servermanager;
$params
=
Parse-Args
$args
;
$result
=
New-Object
psobject @
{
win_feature
=
New-Object
psobject
changed
=
$false
}
If
(
$params
.name
)
{
$name
=
$params
.name
}
Else
{
Fail-Json
$result
"mising required argument: name"
}
If
(
$params
.state
)
{
$state
=
$params
.state.ToString
()
.ToLower
()
If
(!(
$state
-eq
'present'
)
-or
(
$state
-eq
'absent'
))
{
Fail-Json
$result
"state must be 'present' or 'absent'"
}
}
If
(
$state
-eq
"present"
)
{
try
{
$result
=
Add-WindowsFeature
-Name
$name
}
catch
{
Fail-Json
$_
.Exception.Message
}
}
Elseif
(
$state
-eq
"absent"
)
{
try
{
$result
=
Remove-WindowsFeature
-Name
$name
}
catch
{
Fail-Json
$_
.Exception.Message
}
}
$feature_results
=
@
()
ForEach
(
$item
in
$result
.FeatureResult
)
{
$feature_results
+
=
New-Object
psobject @
{
id
=
$item
.id.ToString
()
message
=
$item
.Message.ToString
()
restart_needed
=
$item
.RestartNeeded.ToString
()
skip_reason
=
$item
.SkipReason.ToString
()
success
=
$item
.Success
}
}
Set
-Attr
$result
.win_feature
"feature_result"
$feature_results
Set
-Attr
$result
.win_feature
"success"
result.Success
Set
-Attr
$result
.win_feature
"exitcode"
result.ExitCode.ToString
()
Set
-Attr
$result
.win_feature
"restart_needed"
result.RestartNeeded.ToString
()
Exit
-Json
$result
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment