1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Cleaning up svr4pkg commit fix for #7645

This commit is contained in:
James Cammarata 2014-06-09 10:48:06 -05:00
parent 19d6f4d177
commit 61325f5817

View file

@ -209,18 +209,18 @@ def main():
(rc, out, err) = package_uninstall(module, name, src, category) (rc, out, err) = package_uninstall(module, name, src, category)
out = out[:75] out = out[:75]
#Success,Warning,Interruption,Reboot all,Reboot this return codes # Success, Warning, Interruption, Reboot all, Reboot this return codes
if rc is 0 or rc is 2 or rc is 3 or rc is 10 or rc is 20: if rc in (0, 2, 3, 10, 20):
result['changed'] = True result['changed'] = True
#no install nor uninstall, or failed # no install nor uninstall, or failed
else: else:
result['changed'] = False result['changed'] = False
#Fatal error,Administration,Administration Interaction return codes # Fatal error, Administration, Administration Interaction return codes
if rc is 1 or rc is 4 or rc is 5: if rc in (1, 4 , 5):
result['failed'] = True result['failed'] = True
else: else:
result['failed'] = False result['failed'] = False
if out: if out:
result['stdout'] = out result['stdout'] = out