f735fd672a
* Copy in incidental windows tests. * Update incidental test aliases. * Add support plugins. * Update target references. * Update sanity ignores. * Update integration-aliases test. * Add to CI.
21 lines
454 B
PowerShell
21 lines
454 B
PowerShell
#!powershell
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
#AnsibleRequires -CSharpUtil Ansible.Basic
|
|
|
|
$spec = @{
|
|
options = @{
|
|
data = @{ type = "str"; default = "pong" }
|
|
}
|
|
supports_check_mode = $true
|
|
}
|
|
$module = [Ansible.Basic.AnsibleModule]::Create($args, $spec)
|
|
$data = $module.Params.data
|
|
|
|
if ($data -eq "crash") {
|
|
throw "boom"
|
|
}
|
|
|
|
$module.Result.ping = $data
|
|
$module.ExitJson()
|