File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9696 psql -p 10563 -U dspace -d postgres -c \"SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = 'dspace' AND pid <> pg_backend_pid();\" &&
9797 dropdb -U dspace -p 10563 dspace &&
9898 createdb -U dspace -p 10563 --owner=dspace --encoding=UNICODE dspace &&
99- psql -p 10563 -U dspace -d postgres -c \"CREATE ROLE IF NOT EXISTS postgres SUPERUSER;\" &&
100- psql -p 10563 -U dspace -d postgres -c \"CREATE ROLE IF NOT EXISTS dspace5 IN ROLE dspace;\" &&
99+ ( psql -p 10563 -U dspace -d postgres -c \"CREATE ROLE postgres SUPERUSER;\" || true) &&
100+ ( psql -p 10563 -U dspace -d postgres -c \"CREATE ROLE dspace5 IN ROLE dspace;\" || true) &&
101101 psql -p 10563 -U dspace -d dspace -f /tmp/$FNAME &&
102102 psql -p 10563 -U dspace -d dspace -c 'CREATE EXTENSION IF NOT EXISTS pgcrypto;' &&
103103 rm /tmp/$FNAME
You can’t perform that action at this time.
0 commit comments