Skip to content

Commit c08b661

Browse files
committed
fix: create a symlink for missing path
1 parent 67382a6 commit c08b661

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ on:
44
push:
55
branches:
66
- develop
7-
pull_request:
7+
#TODO PR uncomment this line
8+
#pull_request:
89
workflow_dispatch:
910

1011
jobs:

ansible/tasks/stage2-setup-postgres.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,15 @@
256256
line: pgsodium.getkey_script= '{{ pg_bindir }}/pgsodium_getkey.sh'
257257
when: stage2_nix
258258

259+
#TODO PR may need to remove this.
260+
- name: Create symbolic link for pgsodium_getkey script
261+
file:
262+
src: "/usr/lib/postgresql/bin/pgsodium_getkey.sh"
263+
dest: "/usr/lib/postgresql/share/postgresql/extension/pgsodium_getkey"
264+
state: link
265+
become: yes
266+
when: stage2_nix
267+
259268
- name: Append GRN_PLUGINS_DIR to /etc/environment.d/postgresql.env
260269
ansible.builtin.lineinfile:
261270
path: /etc/environment.d/postgresql.env

ansible/vars.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ postgres_major:
88
- "oriole-16"
99

1010
# Full version strings for each major version
11+
# TOD PR uncomment these lines
1112
postgres_release:
1213
#postgres15: "15.8.1.003-staging-5"
1314
#postgres16: "16.3.1.000-staging-5"
14-
postgresoriole-16: "oriole-16.3.1.000-staging-6"
15+
postgresoriole-16: "oriole-16.3.1.000-staging-5"
1516

1617
# Non Postgres Extensions
1718
pgbouncer_release: "1.19.0"

0 commit comments

Comments
 (0)