File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change 213
213
- name : Initialize the database stage2_nix (non-orioledb)
214
214
become : yes
215
215
become_user : postgres
216
- shell : source /var/lib/postgresql/.bashrc && /usr/lib/postgresql/bin/pg_ctl -D /var/lib/postgresql/data initdb -o "--allow-group-access" -o "--username=supabase_admin"
216
+ shell : source /var/lib/postgresql/.bashrc && initdb -D /var/lib/postgresql/data -o "--allow-group-access" -o "--username=supabase_admin"
217
217
args :
218
218
executable : /bin/bash
219
219
environment :
229
229
- name : Initialize the database stage2_nix (orioledb)
230
230
become : yes
231
231
become_user : postgres
232
- cmd : >
233
- source /var/lib/postgresql/.bashrc && /usr/lib/postgresql/bin/pg_ctl -D /var/lib/postgresql/data initdb \
234
- -o "--allow-group-access" \
235
- -o "--username=supabase_admin" \
236
- -o "--locale-provider=icu" \
237
- -o "--encoding=UTF-8" \
238
- -o "--icu-locale=en_US.UTF-8" \
239
- -o "--lc-collate=en-US-x-icu" \
240
- -o "--lc-ctype=en-US-x-icu"
232
+ shell : >
233
+ source /var/lib/postgresql/.bashrc && initdb -D /var/lib/postgresql/data
234
+ --allow-group-access
235
+ --username=supabase_admin
236
+ --locale-provider=icu
237
+ --encoding=UTF-8
238
+ --icu-locale=en_US.UTF-8
239
+ --lc-collate=en-US-x-icu
240
+ --lc-ctype=en-US-x-icu
241
+ args :
242
+ executable : /bin/bash
241
243
environment :
242
244
LANG : en_US.UTF-8
243
245
LANGUAGE : en_US.UTF-8
You can’t perform that action at this time.
0 commit comments