summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/file/tasks/initialize.yml
blob: ad9f66497a12b7691cee8b1e973aa0fd22407c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# Cleanup the output dir and recreate it for the tests to operate on
#
- name: Cleanup the output directory
  file:
    dest: '{{ remote_tmp_dir_test }}'
    state: 'absent'

- name: Recreate the toplevel output dir
  file:
    dest: '{{ remote_tmp_dir_test }}'
    state: 'directory'

- name: prep with a basic file to operate on
  copy: src=foo.txt dest={{output_file}}