win_lineinfile - fix malformed returned json (#50066)

pull/49262/head
Jordan Borean 6 years ago committed by GitHub
parent 7fb1a71a2c
commit efda3eaf1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
bugfixes:
- win_lineinfile - Fix issue where a malformed json block was returned causing an error

@ -183,7 +183,7 @@ function Present($path, $regexp, $line, $insertafter, $insertbefore, $create, $b
$result.msg = "line added";
}
ElseIf ($insertafter -eq "EOF" -or $index[1] -eq -1) {
$lines.Add($line);
$lines.Add($line) > $null;
$result.changed = $true;
$result.msg = "line added";
}
@ -265,11 +265,11 @@ function Absent($path, $regexp, $line, $backup, $validate, $encodingobj, $linese
$match_found = $line -ceq $cur_line;
}
If ($match_found) {
$found.Add($cur_line);
$found.Add($cur_line) > $null;
$result.changed = $true;
}
Else {
$left.Add($cur_line);
$left.Add($cur_line) > $null;
}
}
@ -351,7 +351,7 @@ ElseIf (Test-Path -LiteralPath $path) {
$max_preamble_len = $plen;
}
If ($plen -gt 0) {
$sortedlist.Add(-($plen * 1000000 + $encoding.CodePage), $encoding);
$sortedlist.Add(-($plen * 1000000 + $encoding.CodePage), $encoding) > $null;
}
}

Loading…
Cancel
Save