Jeremy Lecour
ee21973371
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|2777|524|2253|2462|:+1:
Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/223//ansiblelint">Evolix » ansible-roles » unstable #223</a>
gitea/ansible-roles/pipeline/head This commit looks good
Fully Qualified Collection Name
17 lines
420 B
YAML
17 lines
420 B
YAML
---
|
|
|
|
- name: "Set variables (Debian 8)"
|
|
ansible.builtin.set_fact:
|
|
postgresql_version: '9.4'
|
|
when: postgresql_version is none or postgresql_version | length == 0
|
|
|
|
- ansible.builtin.include: pgdg-repo.yml
|
|
when: postgresql_version != '9.4'
|
|
|
|
- name: Install postgresql package
|
|
ansible.builtin.apt:
|
|
name:
|
|
- "postgresql-{{ postgresql_version }}"
|
|
- ptop
|
|
- libdbd-pg-perl
|
|
update_cache: yes
|