mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-12 03:41:02 +00:00
Add Exit-Json and Fail-Json powershell helper functions
This commit is contained in:
@@ -47,3 +47,20 @@ Function Set-Attr($obj, $name, $value)
|
||||
$obj | Add-Member -Force -MemberType NoteProperty -Name $name -Value $value
|
||||
}
|
||||
|
||||
# Helper function to convert a powershell object to JSON to echo it, exiting
|
||||
# the script
|
||||
Function Exit-Json($obj)
|
||||
{
|
||||
echo $obj | ConvertTo-Json
|
||||
Exit
|
||||
}
|
||||
|
||||
# Helper function to add the "msg" property and "failed" property, convert the
|
||||
# powershell object to JSON and echo it, exiting the script
|
||||
Function Fail-Json($obj, $message)
|
||||
{
|
||||
Set-Attr $obj "msg" $message
|
||||
Set-Attr $obj "failed" $true
|
||||
echo $obj | ConvertTo-Json
|
||||
Exit
|
||||
}
|
||||
|
||||
@@ -34,4 +34,4 @@ Set-Attr $result.ansible_facts "ansible_os_family" "Windows"
|
||||
Set-Attr $result.ansible_facts "ansible_distribution" $osversion.VersionString
|
||||
Set-Attr $result.ansible_facts "ansible_distribution_version" $osversion.Version.ToString()
|
||||
|
||||
echo $result | ConvertTo-Json;
|
||||
Exit-Json $result;
|
||||
|
||||
@@ -44,4 +44,4 @@ $result = New-Object psobject @{
|
||||
encoding = "base64"
|
||||
};
|
||||
Set-Attr $result "content" $content;
|
||||
echo $result | ConvertTo-Json;
|
||||
Exit-Json $result;
|
||||
|
||||
@@ -29,4 +29,4 @@ $result = New-Object psobject @{
|
||||
changed = $false
|
||||
ping = $data
|
||||
};
|
||||
echo $result | ConvertTo-Json;
|
||||
Exit-Json $result;
|
||||
|
||||
@@ -61,4 +61,4 @@ If ($get_md5 -and $result.stat.exists -and -not $result.stat.isdir)
|
||||
Set-Attr $result.stat "md5" $path_md5;
|
||||
}
|
||||
|
||||
echo $result | ConvertTo-Json;
|
||||
Exit-Json $result;
|
||||
|
||||
Reference in New Issue
Block a user