ansible/lib/ansible
Clark Boylan a65e34ce77 Fix synchronize retries (#18535)
* Fix synchronize retries

The synchronize module munges its task args on every invocation of
run(). This was problematic because the munged data was not fit for use
by a second pass of the synchronize module. Correct this by using a copy
of the task args on every invocation of run() so that the original args
are not affected.

Local testing using this playbook seems to confirm that things work as
expected:

  - hosts: all
  tasks:
    - delay: 2
      register: task_result
      retries: 1
      until: task_result.rc == 0
      synchronize:
        dest: /tmp/out
        mode: pull
        src: /tmp/nonexistent/

fixes #18281

* Update synchroncization fixture assertions

When we started operating on a copy of the task args the test assertions
were no longer asserting things about the munged state but of the
pristine state. Convert the copy of task args to a class member so that
it can be compared against later in testing and update the assertions to
check this munged copy.
* Shuffle objects around for cleaner testing

Attach the temporary args dict to the task rather than the action as
this makes updating the existing tests cleaner.
2016-12-12 13:33:30 -08:00
..
cli Add --all option to ansible-doc. 2016-12-12 12:16:29 -08:00
compat
config
errors
executor
galaxy
inventory
module_utils Fix overwrite parameter in module_utils.junos (#18671) 2016-12-12 15:57:29 -05:00
modules Open temp file only once 2016-12-12 10:11:46 -08:00
parsing
playbook
plugins Fix synchronize retries (#18535) 2016-12-12 13:33:30 -08:00
template
utils Add --all option to ansible-doc. 2016-12-12 12:16:29 -08:00
vars
__init__.py
constants.py Remove remnants of obsolete fireball mode. 2016-12-09 16:56:34 -07:00
release.py
test-requirements.txt