community.general/lib/ansible/plugins
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
..
action Fix synchronize retries (#18535) 2016-12-12 13:33:30 -08:00
cache Remove direct calls to print and cleanup imports 2016-11-07 17:12:36 -05:00
callback import reduce from six label:python3 (#18561) 2016-11-22 11:22:24 -08:00
connection add back reverted change to network_cli (#18761) 2016-12-05 21:42:09 -05:00
filter random filter: added optional 'seed' parameter 2016-11-17 15:02:06 -08:00
lookup with_sequence: pass AnsibleError through 2016-11-30 21:26:23 -08:00
shell Mcsalgado's change to use shlex.quote instead of pipes.quote (#18534) 2016-11-17 13:18:29 -08:00
strategy Fix 'cancled' misspelling in --step debug 2016-11-29 09:48:19 -05:00
terminal adds feature to try to auto determine network_os (#18674) 2016-11-30 16:28:47 -05:00
test restored 'results' filters 2016-10-13 13:21:40 -04:00
vars Making the switch to v2 2015-05-03 21:47:26 -05:00
__init__.py adds two new plugins that use ansible-connection for persistence (#18572) 2016-11-28 12:49:40 -05:00