Skip to content

Commit a796ea8

Browse files
committed
fix: syntax error
1 parent c095568 commit a796ea8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ansible/tasks/stage2-setup-postgres.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@
104104
- stage2_nix
105105
- not is_pgsql_15
106106
block:
107-
- name: Install gatekeeper from nix binary cache
107+
- name: Install gatekeeper from nix binary cache
108108
become: yes
109109
shell: |
110110
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"
111111
112112
- name: Create symbolic link for linux-pam to find pam_jit_pg.so
113-
shell: >
114-
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
115113
become: yes
114+
shell: |
115+
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
116116
117117
- name: Set ownership and permissions for /etc/ssl/private
118118
become: yes

0 commit comments

Comments
 (0)