Skip to content

Commit f29ae47

Browse files
committed
fix gpg key pull in reposync template
1 parent 6cf372e commit f29ae47

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

iso/empanadas/empanadas/templates/reposync-src.tmpl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ if [ "$ret_val" -eq 0 ]; then
2323
else
2424
{% if deploy_extra_files %}
2525
pushd {{ download_path }}
26-
curl -RO {{ gpg_key_url }}
26+
{% for key in gpg_key_list %}
27+
curl -RO {{ key }}
28+
{% endfor %}
2729
popd
2830
{% endif %}
2931
exit 0

iso/empanadas/empanadas/templates/reposync.tmpl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ if [ "$ret_val" -eq 0 ]; then
3434
#fi
3535
{%- if deploy_extra_files %}
3636
pushd {{ download_path }}
37-
curl -RO {{ gpg_key_url }}
37+
{% for key in gpg_key_list %}
38+
curl -RO {{ key }}
39+
{% endfor %}
3840
popd
3941
{% endif %}
4042
exit 0

0 commit comments

Comments
 (0)