We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe5f7b commit 893239cCopy full SHA for 893239c
ansible/tasks/setup-postgrest.yml
@@ -1,6 +1,11 @@
1
- name: PostgREST - system user
2
user: name=postgrest
3
4
+- name: Postgres - add PPA
5
+ apt_repository:
6
+ repo: "http://apt.postgresql.org/pub/repos/apt/ focal-pgdg {{ postgresql_major }}"
7
+ state: present
8
+
9
# libpq is a C library that enables user programs to communicate with
10
# the PostgreSQL database server.
11
- name: PostgREST - system dependencies
@@ -9,6 +14,11 @@
14
- libpq5
15
- libnuma-dev
16
17
+- name: Postgres - remove PPA
18
19
20
+ state: absent
21
12
22
- name: postgis - ensure dependencies do not get autoremoved
13
23
shell: |
24
set -e
0 commit comments