mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 01:03:09 +00:00
10 lines
261 B
YAML
10 lines
261 B
YAML
---
|
|
- hosts: all
|
|
vars:
|
|
test_file: /tmp/ansible-alias-test
|
|
tasks:
|
|
- action: command creates=$test_file touch $test_file
|
|
- action: command creates=$test_file false
|
|
- local_action: command true
|
|
- action: command removes=$test_file rm -f $test_file
|