Sha256: 21fbd8d3f2c815810b71b1b8f59f884da059f9d4509f1eba8d72b82408ae1f4b

Contents?: true

Size: 1.06 KB

Versions: 34

Compression:

Stored size: 1.06 KB

Contents

---

# Official PostgreSQL [repository] for debian-based distributions
# [repository]: http://www.postgresql.org/download/

- name: Adding APT repository key
  when: ansible_os_family == 'Debian'
  become: yes
  apt_key:
    id: ACCC4CF8
    url: https://www.postgresql.org/media/keys/ACCC4CF8.asc
  tags:
    - postgresql
    - db
    - repo

- name: Add PostgreSQL official APT repository
  when: ansible_os_family == 'Debian'
  become: yes
  apt_repository:
    repo: "deb http://apt.postgresql.org/pub/repos/apt/ {{ansible_distribution_release}}-pgdg main"
  tags:
    - postgresql
    - db
    - repo

- name: Install PostgreSQL
  when: ansible_os_family == 'Debian'
  become: yes
  apt:
    name: "postgresql-{{postgresql_version}}"
    state: present
    update_cache: yes
    cache_valid_time: 3600
  tags:
    - postgresql
    - db
    - deps

- name: Install dependencies for the Ansible module
  when: ansible_os_family == 'Debian'
  become: yes
  apt:
    name: "{{item}}"
    state: latest
  with_items:
    - python-psycopg2
  tags:
    - postgresql
    - db
    - deps

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
subspace-3.0.13 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.12 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.11 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.10 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.9 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.6 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.5 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.4 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.3 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.2 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.0 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-2.5.10 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-3.0.0.rc1 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-2.5.9 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-2.5.8 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-2.5.7 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-2.5.6 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-2.5.5 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-2.5.4 ansible/roles/zenoamaro.postgresql/tasks/install.yml
subspace-2.5.3 ansible/roles/zenoamaro.postgresql/tasks/install.yml