1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Only verify with GPG when requested by user

This commit is contained in:
Aidan Fitzgerald 2019-03-06 16:04:56 -05:00
parent 6bb853c314
commit f64a5bc718

View file

@ -58,7 +58,8 @@
url: "{{ gitea_integrity_url }}"
dest: "{{ gitea_checksum_path }}"
tags:
- install
- never
- verify
when: internet_available
- name: Verify Gitea binary with GPG signature
@ -66,7 +67,7 @@
gpg --keyserver pgp.mit.edu --recv {{ gitea_gpg_key }}
gpg --verify {{ gitea_checksum_path }} {{ gitea_install_path }}
tags:
- install
- never
- verify
ignore_errors: yes