mirror of
https://github.com/ansible/ansible.git
synced 2026-08-03 08:03:05 +02:00
Fix up sanity problems
This commit is contained in:
@@ -135,11 +135,11 @@ try {
|
||||
|
||||
# populate initial results before we send the async data to avoid result race
|
||||
$result = @{
|
||||
started = 1;
|
||||
finished = 0;
|
||||
results_file = $results_path;
|
||||
ansible_job_id = $local_jid;
|
||||
_ansible_suppress_tmpdir_delete = $true;
|
||||
started = 1
|
||||
finished = 0
|
||||
results_file = $results_path
|
||||
ansible_job_id = $local_jid
|
||||
_ansible_suppress_tmpdir_delete = $true
|
||||
ansible_async_watchdog_pid = $watchdog_pid
|
||||
}
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ Function Backup-File {
|
||||
Process {
|
||||
$backup_path = $null
|
||||
if (Test-Path -LiteralPath $path -PathType Leaf) {
|
||||
$backup_path = "$path.$pid." + [DateTime]::Now.ToString("yyyyMMdd-HHmmss") + ".bak";
|
||||
$backup_path = "$path.$pid." + [DateTime]::Now.ToString("yyyyMMdd-HHmmss") + ".bak"
|
||||
Try {
|
||||
Copy-Item -LiteralPath $path -Destination $backup_path
|
||||
}
|
||||
|
||||
@@ -354,16 +354,16 @@ Function Get-FileChecksum($path, $algorithm = 'sha1') {
|
||||
$hash = $raw_hash.Hash.ToLower()
|
||||
}
|
||||
Else {
|
||||
$fp = [System.IO.File]::Open($path, [System.IO.Filemode]::Open, [System.IO.FileAccess]::Read, [System.IO.FileShare]::ReadWrite);
|
||||
$hash = [System.BitConverter]::ToString($sp.ComputeHash($fp)).Replace("-", "").ToLower();
|
||||
$fp.Dispose();
|
||||
$fp = [System.IO.File]::Open($path, [System.IO.Filemode]::Open, [System.IO.FileAccess]::Read, [System.IO.FileShare]::ReadWrite)
|
||||
$hash = [System.BitConverter]::ToString($sp.ComputeHash($fp)).Replace("-", "").ToLower()
|
||||
$fp.Dispose()
|
||||
}
|
||||
}
|
||||
ElseIf (Test-Path -LiteralPath $path -PathType Container) {
|
||||
$hash = "3";
|
||||
$hash = "3"
|
||||
}
|
||||
Else {
|
||||
$hash = "1";
|
||||
$hash = "1"
|
||||
}
|
||||
return $hash
|
||||
}
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
# passed to the script.
|
||||
|
||||
foreach ($i in $args) {
|
||||
Write-Host $i;
|
||||
Write-Host $i
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
trap {
|
||||
Write-Error -ErrorRecord $_
|
||||
exit 1;
|
||||
exit 1
|
||||
}
|
||||
|
||||
throw "Oh noes I has an error"
|
||||
|
||||
@@ -16,16 +16,16 @@
|
||||
|
||||
# POWERSHELL_COMMON
|
||||
|
||||
$params = Parse-Args $args $true;
|
||||
$params = Parse-Args $args $true
|
||||
|
||||
$data = Get-Attr $params "data" "pong";
|
||||
$data = Get-Attr $params "data" "pong"
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
ping = "pong"
|
||||
};
|
||||
}
|
||||
|
||||
# Test that Set-Attr will replace an existing attribute.
|
||||
Set-Attr $result "ping" $data
|
||||
|
||||
Exit-Json $result;
|
||||
Exit-Json $result
|
||||
|
||||
@@ -16,15 +16,15 @@
|
||||
|
||||
# POWERSHELL_COMMON
|
||||
|
||||
$params = Parse-Args $args $true;
|
||||
$params = Parse-Args $args $true
|
||||
|
||||
$params.thisPropertyDoesNotExist
|
||||
|
||||
$data = Get-Attr $params "data" "pong";
|
||||
$data = Get-Attr $params "data" "pong"
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
ping = $data
|
||||
};
|
||||
}
|
||||
|
||||
Exit-Json $result;
|
||||
Exit-Json $result
|
||||
|
||||
@@ -18,13 +18,13 @@
|
||||
|
||||
$blah = 'I can't quote my strings correctly.'
|
||||
|
||||
$params = Parse-Args $args $true;
|
||||
$params = Parse-Args $args $true
|
||||
|
||||
$data = Get-Attr $params "data" "pong";
|
||||
$data = Get-Attr $params "data" "pong"
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
ping = $data
|
||||
};
|
||||
}
|
||||
|
||||
Exit-Json $result;
|
||||
Exit-Json $result
|
||||
|
||||
@@ -18,13 +18,13 @@
|
||||
|
||||
throw
|
||||
|
||||
$params = Parse-Args $args $true;
|
||||
$params = Parse-Args $args $true
|
||||
|
||||
$data = Get-Attr $params "data" "pong";
|
||||
$data = Get-Attr $params "data" "pong"
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
ping = $data
|
||||
};
|
||||
}
|
||||
|
||||
Exit-Json $result;
|
||||
Exit-Json $result
|
||||
|
||||
@@ -18,13 +18,13 @@
|
||||
|
||||
throw "no ping for you"
|
||||
|
||||
$params = Parse-Args $args $true;
|
||||
$params = Parse-Args $args $true
|
||||
|
||||
$data = Get-Attr $params "data" "pong";
|
||||
$data = Get-Attr $params "data" "pong"
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
ping = $data
|
||||
};
|
||||
}
|
||||
|
||||
Exit-Json $result;
|
||||
Exit-Json $result
|
||||
|
||||
@@ -1,40 +1,40 @@
|
||||
@{
|
||||
Rules = @{
|
||||
PSAvoidLongLines = @{
|
||||
Enable = $true
|
||||
Rules = @{
|
||||
PSAvoidLongLines = @{
|
||||
Enable = $true
|
||||
MaximumLineLength = 160
|
||||
}
|
||||
PSAvoidSemicolonsAsLineTerminators = @{
|
||||
Enable = $true
|
||||
}
|
||||
PSPlaceOpenBrace = @{
|
||||
Enable = $true
|
||||
OnSameLine = $true
|
||||
PSPlaceOpenBrace = @{
|
||||
Enable = $true
|
||||
OnSameLine = $true
|
||||
IgnoreOneLineBlock = $true
|
||||
NewLineAfter = $true
|
||||
NewLineAfter = $true
|
||||
}
|
||||
PSPlaceCloseBrace = @{
|
||||
Enable = $true
|
||||
PSPlaceCloseBrace = @{
|
||||
Enable = $true
|
||||
IgnoreOneLineBlock = $true
|
||||
NewLineAfter = $true
|
||||
NoEmptyLineBefore = $false
|
||||
NewLineAfter = $true
|
||||
NoEmptyLineBefore = $false
|
||||
}
|
||||
PSUseConsistentIndentation = @{
|
||||
Enable = $true
|
||||
IndentationSize = 4
|
||||
PSUseConsistentIndentation = @{
|
||||
Enable = $true
|
||||
IndentationSize = 4
|
||||
PipelineIndentation = 'IncreaseIndentationForFirstPipeline'
|
||||
Kind = 'space'
|
||||
Kind = 'space'
|
||||
}
|
||||
PSUseConsistentWhitespace = @{
|
||||
Enable = $true
|
||||
CheckInnerBrace = $true
|
||||
CheckOpenBrace = $true
|
||||
CheckOpenParen = $true
|
||||
CheckOperator = $true
|
||||
CheckPipe = $true
|
||||
CheckPipeForRedundantWhitespace = $false
|
||||
CheckSeparator = $true
|
||||
CheckParameter = $false
|
||||
PSUseConsistentWhitespace = @{
|
||||
Enable = $true
|
||||
CheckInnerBrace = $true
|
||||
CheckOpenBrace = $true
|
||||
CheckOpenParen = $true
|
||||
CheckOperator = $true
|
||||
CheckPipe = $true
|
||||
CheckPipeForRedundantWhitespace = $false
|
||||
CheckSeparator = $true
|
||||
CheckParameter = $false
|
||||
IgnoreAssignmentOperatorInsideHashTable = $false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user