Sha256: f43ac20a7f68b55fce256748e596b706835c7c1465f3c05c7e47cce78c286633
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' sudo: 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' sudo: 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' sudo: yes apt: name: "postgresql-client-{{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' sudo: yes apt: name: "{{item}}" state: latest with_items: - python-psycopg2 tags: - postgresql - db - deps
Version data entries
34 entries across 34 versions & 1 rubygems