Gareth Healy
2020-02-13 ddd690da5b82beeed683b6c5455e008b32e18cbd
1
2
3
4
5
6
7
8
9
10
11
12
13
---
# Implement your Post Workload deployment tasks here
 
- name: Remove temp dir
  file:
    path: "{{ tmp_dir }}"
    state: absent
 
# Leave this as the last task in the playbook.
- name: post_workload tasks complete
  debug:
    msg: "Post-Workload Tasks completed successfully."
  when: not silent|bool