File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
tests/ansible/integration/context_service Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 22- import_playbook : lru_one_target.yml
33- import_playbook : reconnection.yml
44- import_playbook : remote_name.yml
5+ - import_playbook : remote_tmp.yml
Original file line number Diff line number Diff line change 1+ # issue #1061: ensure remote temporary directory is recreated
2+
3+ - name : integration/context_service/remote_tmp.yml
4+ hosts : test-targets
5+ gather_facts : false
6+ vars :
7+ ansible_remote_tmp : ~/.ansible/remote_tmp_test
8+ tasks :
9+ - name : Exercise ansible_remote_tmp
10+ copy :
11+ dest : canary
12+ mode : u=rw,go=
13+ content : |
14+ Created by integration/context_service/remote_tmp.yml
15+
16+ - name : Delete ansible_remote_tmp
17+ raw : |
18+ rm -rf "{{ ansible_remote_tmp }}"
19+
20+ - name : Do something else that requires ansible_remote_tmp
21+ file :
22+ path : canary
23+ state : absent
24+ tags :
25+ - issue_1061
26+ - remote_tmp
You can’t perform that action at this time.
0 commit comments