You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/lib/ansible
Dag Wieers fceb71128e Return code is not very useful to assume a task failed
So I thought I fixed it before, but there's still one location where
the `rc` value is influential to decide whether a task failed or not.

We already established in #24867 that it is up to the module to decide
what the return code actually means, not the task executor. We modified
the existing modules to move that logic into the module (eg. for
command, shell, etc.)

This relates to the integration tests of win_robocopy, where different
return codes have different meanings:

  - 0  --  No files copied.
  - 1  --  Files copied successfully! (changed)
  - 2  --  Some Extra files or directories were detected. No files were copied. (warning)
  - 3  --  (2+1) Some files were copied. Additional files were present. (changed)
  - 4  --  Some mismatched files or directories were detected. Housekeeping might be required!  (changed + warning)
  - 5  --  (4+1) Some files were copied. Some files were mismatched.  (changed + warning)
  - 6  --  (4+2) Additional files and mismatched files exist.  No files were copied. (warning)
  - 7  --  (4+1+2) Files were copied, a file mismatch was present, and additional files were present. (changed + warning)
  - 8  --  Some files or directories could not be copied! (changed + failed)
  - 9 - 15  --  Fatal error. Check log message! (failed)
  - 16  --  Serious Error! No files were copied! Do you have permissions to access $src and $dest? (failed)

This also fixes #24652
8 years ago
..
cli Fix ansible ad-hoc to respect ANSIBLE_STDOUT_CALLBACK (#26098) 8 years ago
compat ansible/compat/: PEP8 compliancy (#24689) 8 years ago
config Add persistent connection control path dir constant (#25736) 8 years ago
errors Try to show original exception info for yaml (and other) errors (#24468) 8 years ago
executor Return code is not very useful to assume a task failed 8 years ago
galaxy Transition inventory into plugins (#23001) 8 years ago
inventory Ensure hosts aren't duplicated in groups 8 years ago
module_utils Removes unused f5 module utils 8 years ago
modules Add netscaler_server module (#25537) 8 years ago
parsing Cyptography pr 20566 rebase (#25560) 8 years ago
playbook Don't include dependent roles in the dep chain for include_role 8 years ago
plugins re-enable non-pipelined mode for Powershell (#25012) 8 years ago
template Try to show original exception info for yaml (and other) errors (#24468) 8 years ago
utils check options exist before forcing assignment 8 years ago
vars 01110000 01100101 01110000 00111000 00100000 8 years ago
__init__.py Fix ziploader for the cornercase of ansible invoking ansible. 9 years ago
constants.py constants: pep8 fix (#25735) 8 years ago
release.py Collated PEP8 fixes (#25293) 8 years ago