Do not ignore_errors for fallback keyserver

The initial keyserver usage should ignore errors so that
the fallback keyserver can be used. However the second
task should not ignore errors as there is no third
keyserver - if the first has failed, and the fallback has
failed, then the task should fail and the installation
should stop.

Change-Id: I60fdbbde70f9bb14cfdf57e4c357f1cd0fc24f55
This commit is contained in:
Jesse Pretorius 2016-10-16 14:33:15 +01:00
parent 678128f13a
commit 31a6230218

@ -47,7 +47,6 @@
key: "{{ item.fallback_keyserver }}/{{ item.key_name }}"
register: add_keys
until: add_keys|success
ignore_errors: True
retries: 5
delay: 2
with_items: "{{ galera_client_gpg_keys }}"