forked from hitachienergy/epiphany
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up temporary files hitachienergy#536
- Loading branch information
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
13 changes: 12 additions & 1 deletion
13
core/src/epicli/data/common/ansible/playbooks/roles/repository/tasks/teardown.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
- name: Re-enable system repositories and disable epirepo | ||
include_tasks: "{{ ansible_os_family }}/teardown.yml" | ||
include_tasks: "{{ ansible_os_family }}/teardown.yml" | ||
|
||
- name: Clean up temporary files | ||
file: | ||
state: absent | ||
path: "{{ path }}" | ||
loop: | ||
- /tmp/epi-download-requirements | ||
- /tmp/epi-repository-setup-scripts | ||
- /var/tmp/enabled-system-repos.txt | ||
loop_control: | ||
index_var: path |