Skip to content

Commit df11e7e

Browse files
committed
fix: back to to root:root (standard for system binaries)
1 parent 5923e77 commit df11e7e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

ansible/tasks/stage2-setup-postgres.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@
128128

129129
- name: Create symlinks for Nix files into /usr/bin
130130
ansible.builtin.file:
131-
group: 'postgres'
132-
owner: 'postgres'
131+
group: 'root'
132+
owner: 'root'
133133
path: "/usr/bin/{{ file_item['path'] | basename }}"
134134
src: "{{ file_item['path'] }}"
135135
state: 'link'
@@ -150,8 +150,8 @@
150150

151151
- name: Create symlinks for Nix files into /usr/bin
152152
ansible.builtin.file:
153-
group: 'postgres'
154-
owner: 'postgres'
153+
group: 'root'
154+
owner: 'root'
155155
path: "/usr/bin/{{ link_item['path'] | basename }}"
156156
src: "{{ link_item['path'] }}"
157157
state: 'link'

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ postgres_major:
1010

1111
# Full version strings for each major version
1212
postgres_release:
13-
postgresorioledb-17: "17.5.1.063-orioledb"
14-
postgres17: "17.6.1.042"
15-
postgres15: "15.14.1.042"
13+
postgresorioledb-17: "17.5.1.063-orioledb-alias-1"
14+
postgres17: "17.6.1.042-alias-1"
15+
postgres15: "15.14.1.042-alias-1"
1616

1717
# Non Postgres Extensions
1818
pgbouncer_release: 1.19.0

0 commit comments

Comments
 (0)