72760f5999
This changes the get-attr function slightly, and lets the module specify whether a param is needed and auto-fails if it is not present. A module can now verify params like so:: $params = Parse-Args $args; $result = New-Object psobject; Set-Attr $result "changed" $false; $path = Get-Attr -obj $params -name path -failifempty $true -resultobj $result or $params = Parse-Args $args; $result = New-Object psobject; Set-Attr $result "changed" $false; $path = Get-Attr -obj $params -name path -failifempty $true -emptyattributefailmessage "Oh man. You forgot the main part!" -resultobj $result slight tweak in how the powershell module converts to json in order to support nested objects (allows for more complex facts, among others) This script gathers some extended facts on windows hosts in a json array attribute called "ansible_interfaces". This info is needed for some network-related modules I'm working on. Required the update to powershell.ps1 to return deeply nested json objects. |
||
---|---|---|
.. | ||
setup.ps1 | ||
slurp.ps1 | ||
win_feature | ||
win_feature.ps1 | ||
win_get_url | ||
win_get_url.ps1 | ||
win_group | ||
win_group.ps1 | ||
win_msi | ||
win_msi.ps1 | ||
win_ping | ||
win_ping.ps1 | ||
win_service | ||
win_service.ps1 | ||
win_stat | ||
win_stat.ps1 | ||
win_user | ||
win_user.ps1 |