Sha256: b27f8a1658a3dfa20d71c4bc9981e77fa212785e175e3ba913d60edefc041301
Contents?: true
Size: 1005 Bytes
Versions: 2
Compression:
Stored size: 1005 Bytes
Contents
# file: postgresql/tasks/install_yum.yml # The standard ca-certs are needed because without them apt_key will fail to # validate www.postgresql.org (or probably any other source). - name: PostgreSQL | Make sure the CA certificates are available yum: name: ca-certificates state: present - name: PostgreSQL | Add PostgreSQL repository yum: name: "{{ postgresql_yum_repository_url }}" state: present - name: PostgreSQL | Make sure the dependencies are installed yum: name: "{{ item }}" state: present update_cache: yes with_items: ["python-psycopg2", "python-pycurl", "glibc-common"] - name: PostgreSQL | Install PostgreSQL yum: name: "{{ item }}" state: present environment: "{{ postgresql_env }}" with_items: - "postgresql{{ postgresql_version_terse }}-server" - "postgresql{{ postgresql_version_terse }}" - name: PostgreSQL | PGTune yum: name: pgtune state: present environment: "{{ postgresql_env }}" when: postgresql_pgtune
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
taperole-1.7.1 | vendor/ANXS.postgresql/tasks/install_yum.yml |
taperole-1.7.0 | vendor/ANXS.postgresql/tasks/install_yum.yml |