We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cmd
argv
1 parent 17a7f54 commit c8f5b9fCopy full SHA for c8f5b9f
ansible/tasks/setup-postgres.yml
@@ -293,7 +293,15 @@
293
become: true
294
become_user: 'postgres'
295
ansible.builtin.command:
296
- cmd: /usr/lib/postgresql/bin/pg_ctl -D /var/lib/postgresql/data initdb -o "--allow-group-access" -o "--username=supabase_admin" -o "--pgdata /var/lib/postgresql/data"
+ argv:
297
+ - /usr/lib/postgresql/bin/pg_ctl
298
+ - -D /var/lib/postgresql/data
299
+ - initdb
300
+ - -o "--allow-group-access"
301
+ - -o "--username=supabase_admin"
302
+ - -o "--pgdata /var/lib/postgresql/data"
303
+ args:
304
+ creates: /var/lib/postgresql/data/PG_VERSION
305
environment:
306
LANG: en_US.UTF-8
307
LANGUAGE: en_US.UTF-8
0 commit comments