03a4edb477
* Use correct var, move cleanup for async * Add changelog and tests. Fixes #65393. Fixes #65277. * Kill off all long running async tasks from listen_ports_facts * Update task to work with older jinja2
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
- name: Test temp dir on de escalation
|
|
hosts: testhost
|
|
gather_facts: false
|
|
become: yes
|
|
tasks:
|
|
- name: create test user
|
|
user: name=tmptest state=present
|
|
|
|
- name: execute test case
|
|
become_user: tmptest
|
|
block:
|
|
- name: Test case from issue 41340
|
|
blockinfile:
|
|
create: yes
|
|
block: |
|
|
export foo=bar
|
|
marker: "# {mark} Here there be a marker"
|
|
dest: /tmp/testing.txt
|
|
mode: 0644
|
|
always:
|
|
- name: clean up file
|
|
file: path=/tmp/testing.txt state=absent
|
|
|
|
- name: clean up test user
|
|
user: name=tmptest state=absent
|
|
become_user: root
|
|
|
|
- name: Test tempdir is removed
|
|
hosts: testhost
|
|
gather_facts: false
|
|
tasks:
|
|
- file:
|
|
state: touch
|
|
path: "/{{ output_dir }}/65393"
|
|
|
|
- copy:
|
|
src: "/{{ output_dir }}/65393"
|
|
dest: "/{{ output_dir }}/65393.2"
|
|
remote_src: true
|
|
|
|
- find:
|
|
path: "~/.ansible/tmp"
|
|
use_regex: yes
|
|
patterns: 'AnsiballZ_.+\.py'
|
|
recurse: true
|
|
register: result
|
|
|
|
- debug:
|
|
var: result
|
|
|
|
- assert:
|
|
that:
|
|
# Should only be AnsiballZ_find.py because find is actively running
|
|
- result.files|length == 1
|
|
- result.files[0].path.endswith('/AnsiballZ_find.py')
|