summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/setup_remote_tmp_dir/tasks/default.yml
blob: 3be42effa31e9267dfa721d6f530256065080107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- name: create temporary directory
  tempfile:
    state: directory
    suffix: .test
  register: remote_tmp_dir
  notify:
    - delete temporary directory

- name: record temporary directory
  set_fact:
    remote_tmp_dir: "{{ remote_tmp_dir.path }}"
    cacheable: "{{ setup_remote_tmp_dir_cache_path | bool }}"