Skip to content

Commit 3933955

Browse files
committed
fix: different syntax
1 parent 359da13 commit 3933955

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

ansible/tasks/setup-postgrest.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@
1414

1515
- name: PostgREST - install system dependencies
1616
apt:
17-
pkg:
18-
- "libpq5 (>= 15)"
19-
- libnuma-dev
17+
name: libpq5
18+
version: ">=15"
19+
state: present
2020
update_cache: yes
21+
22+
- name: PostgREST - install libnuma-dev
23+
apt:
24+
name: libnuma-dev
2125
state: present
2226

2327
- name: PostgREST - verify libpq5 version

0 commit comments

Comments
 (0)