Skip to content

Commit 19fb404

Browse files
committed
fix: shared files path
1 parent bd1f4c2 commit 19fb404

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ansible/tasks/internal/collect-pg-binaries.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- name: Collect Postgres binaries - collect binaries and libraries
77
copy:
88
remote_src: yes
9-
src: /usr/lib/postgresql/{{ item }}/
9+
src: /usr/lib/postgresql/{{ postgresql_major }}/{{ item }}/
1010
dest: /tmp/pg_binaries/{{ postgresql_major }}/{{ item }}/
1111
with_items:
1212
- bin
@@ -15,7 +15,7 @@
1515
- name: Collect Postgres binaries - collect shared files
1616
copy:
1717
remote_src: yes
18-
src: /var/lib/postgresql/
18+
src: /usr/share/postgresql/{{ postgresql_major }}/
1919
dest: /tmp/pg_binaries/{{ postgresql_major }}/share/
2020

2121
- name: Collect Postgres binaries - create tarfile

0 commit comments

Comments
 (0)