mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Added support for comma seperated feature names in the name parameter of the win_feature module
This commit is contained in:
@@ -28,7 +28,7 @@ $result = New-Object PSObject -Property @{
|
||||
}
|
||||
|
||||
If ($params.name) {
|
||||
$name = $params.name
|
||||
$name = $params.name -split ',' | % { $_.Trim() }
|
||||
}
|
||||
Else {
|
||||
Fail-Json $result "mising required argument: name"
|
||||
|
||||
Reference in New Issue
Block a user