Add check mode support for Windows modules that don't modify the remote system.

This commit is contained in:
Chris Church 2015-07-30 15:48:34 -04:00 committed by Matt Clay
parent bb6762dffd
commit 1b6edab87c
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@
# WANT_JSON
# POWERSHELL_COMMON
$params = Parse-Args $args;
$params = Parse-Args $args $true;
$src = Get-Attr $params "src" (Get-Attr $params "path" $FALSE);
If (-not $src)

View file

@ -17,7 +17,7 @@
# WANT_JSON
# POWERSHELL_COMMON
$params = Parse-Args $args;
$params = Parse-Args $args $true;
$data = Get-Attr $params "data" "pong";

View file

@ -17,7 +17,7 @@
# WANT_JSON
# POWERSHELL_COMMON
$params = Parse-Args $args;
$params = Parse-Args $args $true;
function Date_To_Timestamp($start_date, $end_date)
{