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