[TEMP] Create temp remote directory in ~. (#504)

(cherry picked from commit d0d99c31b0)
This commit is contained in:
Felix Fontein
2022-08-24 06:54:09 +02:00
parent 6bec0b402c
commit f5632c27f4

View File

@@ -1,7 +1,18 @@
---
# Copyright (c) Ansible Project
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: create ~/tmp
file:
path: '~/tmp'
state: directory
- name: create temporary directory
tempfile:
state: directory
suffix: .test
path: '~/tmp'
register: remote_tmp_dir
notify:
- delete temporary directory