mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-01 16:46:16 +00:00
7 lines
152 B
Bash
7 lines
152 B
Bash
#!/usr/bin/env bash
|
|
|
|
psql -h postgres -U postgres postgres <<EOF
|
|
CREATE USER gitlab;
|
|
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO gitlab;
|
|
EOF
|