mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Add shell_plugins to abstract shell-specific functions out of runner, add winrm connection plugin, add initial Windows modules.
This commit is contained in:
87
library/windows/win_ping
Normal file
87
library/windows/win_ping
Normal file
@@ -0,0 +1,87 @@
|
||||
#!powershell
|
||||
# WANT_JSON
|
||||
|
||||
If ($args.Length -gt 0)
|
||||
{
|
||||
$params = Get-Content $args[0] | ConvertFrom-Json;
|
||||
}
|
||||
|
||||
$data = 'pong';
|
||||
If (($params | Get-Member | Select-Object -ExpandProperty Name) -contains 'data')
|
||||
{
|
||||
$data = $params.data;
|
||||
}
|
||||
|
||||
$result = '{}' | ConvertFrom-Json;
|
||||
$result | Add-Member -MemberType NoteProperty -Name ping -Value $data;
|
||||
echo $result | ConvertTo-Json;
|
||||
|
||||
# _______ _ _
|
||||
# |__ __| | (_)
|
||||
# | | | |__ _ ___
|
||||
# | | | '_ \| / __|
|
||||
# | | | | | | \__ \
|
||||
# __|_| |_| |_|_|___/
|
||||
# |_ _|
|
||||
# | | ___
|
||||
# | | / __|
|
||||
# _| |_\__ \
|
||||
# |___/\|___/
|
||||
# / \
|
||||
# / /\ \
|
||||
# / ____ \
|
||||
# /_/ \_\
|
||||
# | |
|
||||
# | | __ _ _ __ __ _ ___
|
||||
# | | / _` | '__/ _` |/ _ \
|
||||
# | |___| (_| | | | (_| | __/
|
||||
# |______\__,_|_| \__, |\___|
|
||||
# __/ |
|
||||
# ____ _ |___/
|
||||
# | _ \| | | |
|
||||
# | |_) | | ___ ___| | __
|
||||
# | _ <| |/ _ \ / __| |/ /
|
||||
# | |_) | | (_) | (__| <
|
||||
# |____/|_|\___/ \___|_|\_\
|
||||
# / __ \ / _|
|
||||
# | | | | |_
|
||||
# | | | | _|
|
||||
# | |__| | |
|
||||
# \____/|_| __ __
|
||||
# / ____| | / _|/ _|
|
||||
# | (___ | |_ _ _| |_| |_
|
||||
# \___ \| __| | | | _| _|
|
||||
# ____) | |_| |_| | | | |
|
||||
# |_____/ \__|\__,_|_| |_|
|
||||
# | | | |
|
||||
# | |_ _ ___| |_
|
||||
# _ | | | | / __| __|
|
||||
# | |__| | |_| \__ \ |_
|
||||
# \____/_\__,_|___/\__|
|
||||
# |__ __|
|
||||
# | | ___
|
||||
# | |/ _ \
|
||||
# | | (_) |
|
||||
# __|_|\___/ _
|
||||
# | \/ | | |
|
||||
# | \ / | __ _| | _____
|
||||
# | |\/| |/ _` | |/ / _ \
|
||||
# | | | | (_| | < __/
|
||||
# |_|__|_|\__,_|_|\_\___|
|
||||
# |__ __| |
|
||||
# | | | |__ ___
|
||||
# | | | '_ \ / _ \
|
||||
# | | | | | | __/
|
||||
# __|_|_ |_| |_|\___|
|
||||
# | ____(_) |
|
||||
# | |__ _| | ___
|
||||
# | __| | | |/ _ \
|
||||
# | | | | | __/
|
||||
# |_|__ |_|_|\___|
|
||||
# | _ \(_)
|
||||
# | |_) |_ __ _ __ _ ___ _ __
|
||||
# | _ <| |/ _` |/ _` |/ _ \ '__|
|
||||
# | |_) | | (_| | (_| | __/ |
|
||||
# |____/|_|\__, |\__, |\___|_|
|
||||
# __/ | __/ |
|
||||
# |___/ |___/
|
||||
Reference in New Issue
Block a user