8339704831
* Create a dedicated windows-minimal test target. The windows-minimal target is a copy of the win_ping test, taking the place of that test as the windows minimal test run on multiple python versions. It includes a private copy of the win_ping module so it will work after migration. This will keep tests passing during the migration prep process. * Update sanity ignores.
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()
|