BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
0ab64691
Commit
0ab64691
authored
May 15, 2018
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Grant privileges after database is created
Never drop the database when granting privileges
parent
cdcde75b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
16 deletions
+14
-16
.gitlab-ci.yml
.gitlab-ci.yml
+1
-2
create_mysql_user.sh
scripts/create_mysql_user.sh
+0
-1
create_postgres_user.sh
scripts/create_postgres_user.sh
+1
-3
prepare_build.sh
scripts/prepare_build.sh
+2
-10
utils.sh
scripts/utils.sh
+10
-0
No files found.
.gitlab-ci.yml
View file @
0ab64691
...
...
@@ -189,7 +189,7 @@ stages:
<<
:
*dedicated-no-docs-and-no-qa-pull-cache-job
<<
:
*use-pg
variables
:
CREATE_DB_USER
:
"
tru
e"
SETUP_DB
:
"
fals
e"
script
:
# Manually clone gitlab-test and only seed this project in
# db/fixtures/development/04_project.rb thanks to SIZE=1 below
...
...
@@ -233,7 +233,6 @@ stages:
.migration-paths
:
&migration-paths
<<
:
*dedicated-no-docs-and-no-qa-pull-cache-job
variables
:
CREATE_DB_USER
:
"
true"
SETUP_DB
:
"
false"
script
:
-
git fetch https://gitlab.com/gitlab-org/gitlab-ce.git v9.3.0
...
...
scripts/create_mysql_user.sh
View file @
0ab64691
#!/bin/bash
mysql
--user
=
root
--host
=
mysql
<<
EOF
CREATE DATABASE IF NOT EXISTS gitlabhq_test DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER IF NOT EXISTS 'gitlab'@'%';
GRANT ALL PRIVILEGES ON gitlabhq_test.* TO 'gitlab'@'%';
FLUSH PRIVILEGES;
...
...
scripts/create_postgres_user.sh
View file @
0ab64691
#!/bin/bash
psql
-h
postgres
-U
postgres postgres
<<
EOF
DROP DATABASE IF EXISTS gitlabhq_test;
CREATE DATABASE gitlabhq_test;
CREATE USER gitlab;
GRANT ALL PRIVILEGES ON
DATABASE gitlabhq_test
TO gitlab;
GRANT ALL PRIVILEGES ON
ALL TABLES IN SCHEMA public
TO gitlab;
EOF
scripts/prepare_build.sh
View file @
0ab64691
...
...
@@ -49,16 +49,8 @@ sed -i 's/localhost/redis/g' config/redis.queues.yml
cp
config/redis.shared_state.yml.example config/redis.shared_state.yml
sed
-i
's/localhost/redis/g'
config/redis.shared_state.yml
# Some tasks (e.g. db:seed_fu) need to have a properly-configured database
# user but not necessarily a full schema loaded
if
[
"
$CREATE_DB_USER
"
!=
"false"
]
;
then
if
[
"
$GITLAB_DATABASE
"
=
'postgresql'
]
;
then
.
scripts/create_postgres_user.sh
else
.
scripts/create_mysql_user.sh
fi
fi
if
[
"
$SETUP_DB
"
!=
"false"
]
;
then
setup_db
elif
getent hosts postgres
||
getent hosts mysql
;
then
setup_db_user_only
fi
scripts/utils.sh
View file @
0ab64691
...
...
@@ -13,7 +13,17 @@ retry() {
return
1
}
setup_db_user_only
()
{
if
[
"
$GITLAB_DATABASE
"
=
"postgresql"
]
;
then
.
scripts/create_postgres_user.sh
else
.
scripts/create_mysql_user.sh
fi
}
setup_db
()
{
setup_db_user_only
bundle
exec
rake db:drop db:create db:schema:load db:migrate
if
[
"
$GITLAB_DATABASE
"
=
"mysql"
]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment