Merge remote-tracking branch 'origin/dmw'
* origin/dmw: issue #533: update routing to account for DEL_ROUTE propagation race tests: use defer_sync() Rather than defer() + ancient sync_with_broker() tests: one case from doas_test was invoking su tests: hide memory-mapped files from lsof output issue #615: remove meaningless test issue #625: ignore SIGINT within MuxProcess issue #625: use exec() instead of subprocess in mitogen_ansible_playbook issue #615: regression test issue #615: update Changelog.new-serialization
commit
8d16f657ab
@ -0,0 +1,21 @@
|
||||
# issue #615: 'fetch' with become: was internally using slurp.
|
||||
|
||||
- hosts: target
|
||||
any_errors_fatal: True
|
||||
gather_facts: no
|
||||
become: true
|
||||
vars:
|
||||
mitogen_ssh_compression: false
|
||||
tasks:
|
||||
- shell: |
|
||||
dd if=/dev/zero of=/tmp/512mb.zero bs=1048576 count=512;
|
||||
chmod go= /tmp/512mb.zero
|
||||
|
||||
- fetch:
|
||||
src: /tmp/512mb.zero
|
||||
dest: /tmp/fetch-out
|
||||
|
||||
- file:
|
||||
path: /tmp/fetch-out
|
||||
state: absent
|
||||
delegate_to: localhost
|
Loading…
Reference in New Issue