File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1
1
- name : PostgREST - system user
2
2
user : name=postgrest
3
3
4
+ - name : PostgREST - add Postgres PPA gpg key
5
+ apt_key :
6
+ url : https://www.postgresql.org/media/keys/ACCC4CF8.asc
7
+ state : present
8
+
9
+ - name : PostgREST - add Postgres PPA
10
+ apt_repository :
11
+ repo : " deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg {{ postgresql_major }}"
12
+ state : present
13
+
14
+ - name : PostgREST - update apt cache
15
+ apt :
16
+ update_cache : yes
17
+
4
18
# libpq is a C library that enables user programs to communicate with
5
19
# the PostgreSQL database server.
6
20
- name : PostgREST - system dependencies
9
23
- libpq5
10
24
- libnuma-dev
11
25
26
+ - name : PostgREST - remove Postgres PPA gpg key
27
+ apt_key :
28
+ url : https://www.postgresql.org/media/keys/ACCC4CF8.asc
29
+ state : absent
30
+
31
+ - name : PostgREST - remove Postgres PPA
32
+ apt_repository :
33
+ repo : " deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg {{ postgresql_major }}"
34
+ state : absent
35
+
12
36
- name : postgis - ensure dependencies do not get autoremoved
13
37
shell : |
14
38
set -e
Original file line number Diff line number Diff line change 1
- postgres-version = " 15.6.1.111 "
1
+ postgres-version = " 15.6.1.112 "
You can’t perform that action at this time.
0 commit comments