summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Hanselka <alex@gitlab.com>2018-11-07 22:20:54 +0000
committerRobert Speicher <rspeicher@gmail.com>2019-01-08 11:47:30 -0600
commit69cda99b605475da6d8f56a55a37c52f644e48d8 (patch)
tree57978b1b93469b71ce1e1e9f6ae88289ac1f21ff
parent4c5dbae1305d7bde689e217620addff50e3bf3af (diff)
downloadgitlab-ce-69cda99b605475da6d8f56a55a37c52f644e48d8.tar.gz
Update create_postgres_user.sh
-rw-r--r--scripts/create_postgres_user.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create_postgres_user.sh b/scripts/create_postgres_user.sh
index 8a049bcd7fb..0fa065b0387 100644
--- a/scripts/create_postgres_user.sh
+++ b/scripts/create_postgres_user.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-psql -h postgres -U postgres postgres <<EOF
+psql -h localhost -U postgres postgres <<EOF
CREATE USER gitlab;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO gitlab;
EOF