[PR #8476/2612ceee backport][stable-9] Fix launchd check-mode to report changed correctly (#8529)

Fix launchd check-mode to report changed correctly (#8476)

* Fix launchd check-mode to report changed correctly

* Update changelog fragment.

---------

Co-authored-by: Strahinja Kustudic <strahinjak@nordeus.com>
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 2612ceee37)

Co-authored-by: Strahinja Kustudic <kustodian@gmail.com>
pull/8536/head
patchback[bot] 2024-06-17 07:55:49 +02:00 committed by GitHub
parent 68a9b66966
commit 090d3f3709
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1,2 @@
bugfixes:
- launched - correctly report changed status in check mode (https://github.com/ansible-collections/community.general/pull/8406).

View File

@ -514,7 +514,8 @@ def main():
result['status']['current_pid'] != result['status']['previous_pid']):
result['changed'] = True
if module.check_mode:
result['changed'] = True
if result['status']['current_state'] != action:
result['changed'] = True
module.exit_json(**result)