mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 17:50:27 +00:00
Merge pull request #258 from noelmcloughlin/fixes
Always retry alternatives.install state
This commit is contained in:
commit
5f7f504a8a
3 changed files with 15 additions and 4 deletions
|
@ -39,6 +39,11 @@ postgresql-{{ bin }}-altinstall:
|
||||||
- onlyif: test -f {{ path }}
|
- onlyif: test -f {{ path }}
|
||||||
- require:
|
- require:
|
||||||
- pkg: postgresql-client-libs
|
- pkg: postgresql-client-libs
|
||||||
|
{%- if grains['saltversioninfo'] < [2018, 11, 0, 0] %}
|
||||||
|
- retry:
|
||||||
|
attempts: 2
|
||||||
|
until: True
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
|
@ -23,11 +23,12 @@ postgresql-{{ bin }}-altinstall:
|
||||||
- link: {{ salt['file.join']('/usr/bin', bin) }}
|
- link: {{ salt['file.join']('/usr/bin', bin) }}
|
||||||
- path: {{ path }}
|
- path: {{ path }}
|
||||||
- priority: {{ postgres.linux.altpriority }}
|
- priority: {{ postgres.linux.altpriority }}
|
||||||
{% if grains.os in ('Fedora', 'CentOS',) %} {# bypass bug #}
|
|
||||||
- onlyif: alternatives --display {{ bin }}
|
|
||||||
{% else %}
|
|
||||||
- onlyif: test -f {{ path }}
|
- onlyif: test -f {{ path }}
|
||||||
{% endif %}
|
{%- if grains['saltversioninfo'] < [2018, 11, 0, 0] %}
|
||||||
|
- retry:
|
||||||
|
attempts: 2
|
||||||
|
until: True
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
|
@ -54,6 +54,11 @@ postgresql-{{ bin }}-altinstall:
|
||||||
- pkg: postgresql-server
|
- pkg: postgresql-server
|
||||||
- require_in:
|
- require_in:
|
||||||
- cmd: postgresql-cluster-prepared
|
- cmd: postgresql-cluster-prepared
|
||||||
|
{%- if grains['saltversioninfo'] < [2018, 11, 0, 0] %}
|
||||||
|
- retry:
|
||||||
|
attempts: 2
|
||||||
|
until: True
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue