debian-mirror-gitlab/scripts/prepare_build.sh

46 lines
1.4 KiB
Bash
Raw Normal View History

2017-08-17 22:00:37 +05:30
. scripts/utils.sh
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
export SETUP_DB=${SETUP_DB:-true}
export USE_BUNDLE_INSTALL=${USE_BUNDLE_INSTALL:-true}
2017-09-10 17:25:29 +05:30
if [ "$USE_BUNDLE_INSTALL" != "false" ]; then
2021-06-08 01:23:25 +05:30
bundle_install_script
2017-09-10 17:25:29 +05:30
fi
cp config/gitlab.yml.example config/gitlab.yml
2018-03-17 18:26:18 +05:30
sed -i 's/bin_path: \/usr\/bin\/git/bin_path: \/usr\/local\/bin\/git/' config/gitlab.yml
2017-09-10 17:25:29 +05:30
2021-11-11 11:23:49 +05:30
if [ "$DECOMPOSED_DB" == "true" ]; then
echo "Using decomposed database config (config/database.yml.decomposed-postgresql)"
cp config/database.yml.decomposed-postgresql config/database.yml
else
cp config/database.yml.postgresql config/database.yml
fi
2017-08-17 22:00:37 +05:30
2020-01-01 13:55:28 +05:30
if [ -f config/database_geo.yml.postgresql ]; then
cp config/database_geo.yml.postgresql config/database_geo.yml
2019-02-15 15:39:39 +05:30
fi
2018-03-17 18:26:18 +05:30
# Set user to a non-superuser to ensure we test permissions
sed -i 's/username: root/username: gitlab/g' config/database.yml
2020-01-01 13:55:28 +05:30
sed -i 's/localhost/postgres/g' config/database.yml
sed -i 's/username: git/username: postgres/g' config/database.yml
2019-02-15 15:39:39 +05:30
2020-01-01 13:55:28 +05:30
if [ -f config/database_geo.yml ]; then
sed -i 's/localhost/postgres/g' config/database_geo.yml
sed -i 's/username: git/username: postgres/g' config/database_geo.yml
2017-08-17 22:00:37 +05:30
fi
2020-05-24 23:13:21 +05:30
cp config/cable.yml.example config/cable.yml
sed -i 's|url:.*$|url: redis://redis:6379|g' config/cable.yml
2017-08-17 22:00:37 +05:30
cp config/resque.yml.example config/resque.yml
2019-09-30 21:07:59 +05:30
sed -i 's|url:.*$|url: redis://redis:6379|g' config/resque.yml
2017-08-17 22:00:37 +05:30
if [ "$SETUP_DB" != "false" ]; then
2019-02-15 15:39:39 +05:30
setup_db
2020-01-01 13:55:28 +05:30
elif getent hosts postgres; then
2019-02-15 15:39:39 +05:30
setup_db_user_only
2015-09-11 14:41:01 +05:30
fi