You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
508 B
YAML
26 lines
508 B
YAML
7 years ago
|
|
||
|
- hosts: all
|
||
|
any_errors_fatal: true
|
||
|
tasks:
|
||
|
- name: integration/action/make_tmp_path.yml
|
||
|
assert:
|
||
|
that: true
|
||
|
|
||
|
- action_passthrough:
|
||
|
method: _make_tmp_path
|
||
|
register: out
|
||
|
|
||
|
- assert:
|
||
|
that: out.result.startswith(ansible_remote_tmp|expanduser)
|
||
|
|
||
|
- stat:
|
||
|
path: "{{out.result}}"
|
||
|
register: st
|
||
|
|
||
|
- assert:
|
||
|
that: st.stat.exists and st.stat.isdir and st.stat.mode == "0700"
|
||
|
|
||
|
- file:
|
||
|
path: "{{out.result}}"
|
||
|
state: absent
|