summaryrefslogtreecommitdiff
path: root/scripts/create_postgres_user.sh
blob: 8e0f84f62ca67878218a01dd43b4e32c19d337ab (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

if pg_isready -h localhost -U postgres; then
  psql -h localhost -U postgres postgres <<EOF
  CREATE USER gitlab;
  GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO gitlab;
EOF
fi