Merge pull request #258 from noelmcloughlin/fixes

Always retry alternatives.install state
This commit is contained in:
Imran Iqbal 2019-04-19 09:13:15 +01:00 committed by GitHub
commit 5f7f504a8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 4 deletions

View file

@ -39,6 +39,11 @@ postgresql-{{ bin }}-altinstall:
- onlyif: test -f {{ path }}
- require:
- pkg: postgresql-client-libs
{%- if grains['saltversioninfo'] < [2018, 11, 0, 0] %}
- retry:
attempts: 2
until: True
{%- endif %}
{%- endfor %}
{%- endif %}

View file

@ -23,11 +23,12 @@ postgresql-{{ bin }}-altinstall:
- link: {{ salt['file.join']('/usr/bin', bin) }}
- path: {{ path }}
- priority: {{ postgres.linux.altpriority }}
{% if grains.os in ('Fedora', 'CentOS',) %} {# bypass bug #}
- onlyif: alternatives --display {{ bin }}
{% else %}
- onlyif: test -f {{ path }}
{% endif %}
{%- if grains['saltversioninfo'] < [2018, 11, 0, 0] %}
- retry:
attempts: 2
until: True
{%- endif %}
{%- endfor %}
{%- endif %}

View file

@ -54,6 +54,11 @@ postgresql-{{ bin }}-altinstall:
- pkg: postgresql-server
- require_in:
- cmd: postgresql-cluster-prepared
{%- if grains['saltversioninfo'] < [2018, 11, 0, 0] %}
- retry:
attempts: 2
until: True
{%- endif %}
{%- endfor %}
{%- endif %}