Skip to content

Commit dd6c5d8

Browse files
committed
fix: syntax error
1 parent 354bdd9 commit dd6c5d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ansible/tasks/stage2-setup-postgres.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,17 +154,17 @@
154154
- name: Install gatekeeper if not pg15
155155
when:
156156
- stage2_nix
157-
- not is_pgsql_15
157+
- not is_psql_15
158158
block:
159-
- name: Install gatekeeper from nix binary cache
159+
- name: Install gatekeeper from nix binary cache
160160
become: yes
161161
shell: |
162162
sudo -u postgres bash -c ". /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh && nix profile install github:supabase/postgres/{{ git_commit_sha }}#gatekeeper"
163163
164164
- name: Create symbolic link for linux-pam to find pam_jit_pg.so
165-
shell: >
166-
sudo ln -s /var/lib/postgresql/.nix-profile/lib/security/pam_jit_pg.so $(find /nix/store -type d -path "/nix/store/*-linux-pam-*/lib/security" -print -quit)/pam_jit_pg.so
167165
become: yes
166+
shell: |
167+
sudo ln -s /var/lib/postgresql/.nix-profile/lib/security/pam_jit_pg.so $(find /nix/store -type d -path "/nix/store/*-linux-pam-*/lib/security" -print -quit)/pam_jit_pg.so
168168
169169
- name: Create symlinks for Nix files into /usr/lib/postgresql/bin
170170
ansible.builtin.file:

0 commit comments

Comments
 (0)