mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
244 B
PowerShell
14 lines
244 B
PowerShell
6 years ago
|
#!powershell
|
||
|
|
||
|
#Requires -Module Ansible.ModuleUtils.Legacy
|
||
|
#Requires -Module Ansible.ModuleUtils.Recursive3
|
||
|
#Requires -Version 2
|
||
|
|
||
|
$ErrorActionPreference = "Stop"
|
||
|
|
||
|
$result = @{
|
||
|
changed = $false
|
||
|
value = Get-Test3
|
||
|
}
|
||
|
Exit-Json -obj $result
|