win_chocolatey: always return the rc return value (#41883)

pull/41886/head
Jordan Borean 6 years ago committed by GitHub
parent f30e0b833d
commit 2e46688bca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
minor_changes:
- win_chocolatey - set the rc return value to always be returned, default to 0 https://github.com/ansible/ansible/issues/41758

@ -36,6 +36,7 @@ $proxy_password = Get-AnsibleParam -obj $params -name "proxy_password" -type "st
$result = @{
changed = $false
rc = 0
}
Function Chocolatey-Install-Upgrade

@ -211,7 +211,7 @@ command:
sample: choco.exe install -r --no-progress -y sysinternals --timeout 2700 --failonunfound
rc:
description: The return code from the chocolatey task.
returned: changed
returned: always
type: int
sample: 0
stdout:

@ -26,6 +26,7 @@
assert:
that:
- 'install.changed == true'
- install.rc == 0
- name: install chocolatey-core.extension again
win_chocolatey:
@ -37,6 +38,7 @@
assert:
that:
- 'install_again.changed == false'
- install.rc == 0
- name: remove chocolatey-core.extension
win_chocolatey:
@ -48,6 +50,7 @@
assert:
that:
- 'remove.changed == true'
- install.rc == 0
- name: remove chocolatey-core.extension again
win_chocolatey:
@ -59,3 +62,4 @@
assert:
that:
- 'remove_again.changed == false'
- install.rc == 0

Loading…
Cancel
Save