Delete keyring dir when we're done

It goes away when bubblewrap does, but let's be extra safe.

Change-Id: Ic7cc81081d075cdbd50ad158369327c36c3bcda1
This commit is contained in:
Monty Taylor 2017-08-22 19:33:40 -04:00
parent 6271966f10
commit c3339caf12
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 5 additions and 0 deletions

View File

@ -24,3 +24,8 @@
command: "gpg --homedir {{ gnupg_tmpdir.path }} --armor --detach-sign {{ item.path }}"
with_items: "{{ artifacts.files }}"
when: artifacts.matched|bool
- name: Delete keyring directory
file:
path: "{{ gnupg_tmpdir.path }}"
state: absent