50 lines
2.1 KiB
Bash
Executable file
50 lines
2.1 KiB
Bash
Executable file
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
# Read debian specific configuration
|
|
. /etc/gitlab/gitlab-debian.conf
|
|
export DB RAILS_ENV
|
|
|
|
cd /usr/share/gitlab
|
|
|
|
# Check if the db is already present
|
|
db_relations="$(LANG=C runuser -u postgres -- sh -c "psql gitlab_production -c \"\d\"" 2>&1)"
|
|
if [ "$db_relations" = "No relations found." ] || \
|
|
[ "$db_relations" = "Did not find any relations." ]; then
|
|
echo "Initializing database..."
|
|
test -f ${gitlab_home}/db/schema.rb || \
|
|
runuser -u ${gitlab_user} -- sh -c \
|
|
"cp ${gitlab_data_dir}/db/schema.rb.template ${gitlab_data_dir}/db/schema.rb"
|
|
runuser -u ${gitlab_user} -- sh -c \
|
|
"touch ${gitlab_data_dir}/.gitlab_shell_secret"
|
|
runuser -u ${gitlab_user} -- sh -c 'touch /var/lib/gitlab/secrets.yml'
|
|
runuser -u ${gitlab_user} -- sh -c '/usr/bin/bundle exec rake db:schema:load'
|
|
else
|
|
echo "gitlab_production database is not empty, skipping gitlab setup"
|
|
fi
|
|
|
|
runuser -u ${gitlab_user} -- sh -c '/usr/bin/bundle exec rake db:migrate'
|
|
|
|
# Restrict permissions for secret files
|
|
chmod 0700 ${gitlab_data_dir}/.gitlab_shell_secret
|
|
|
|
echo "Installing node modules..."
|
|
runuser -u ${gitlab_user} -- sh -c 'install -d /var/lib/gitlab/.node_modules'
|
|
runuser -u ${gitlab_user} -- sh -c 'install -d /var/lib/gitlab/yarn'
|
|
runuser -u ${gitlab_user} -- sh -c 'cd /var/lib/gitlab/yarn; npm install yarn'
|
|
runuser -u ${gitlab_user} -- sh -c '/var/lib/gitlab/yarn/node_modules/.bin/yarn --frozen-lockfile install'
|
|
export PATH=$PATH:/var/lib/gitlab/yarn/node_modules/.bin
|
|
# Remove write permissions of .yarn-metadata.json files
|
|
runuser -u ${gitlab_user} -- sh -c 'find /var/lib/gitlab/.cache/yarn/v4/ -name .yarn-metadata.json -perm -a=w -exec chmod 644 {} \;'
|
|
|
|
echo "Precompiling locales..."
|
|
runuser -u ${gitlab_user} -- sh -c '/usr/bin/bundle exec rake gettext:po_to_json'
|
|
|
|
echo "Precompiling assets..."
|
|
runuser -u ${gitlab_user} -- sh -c '/usr/bin/bundle exec rake tmp:cache:clear assets:precompile'
|
|
|
|
echo "Webpacking..."
|
|
#runuser -u ${gitlab_user} -- sh -c 'rm -rf node_modules/webpack'
|
|
#runuser -u ${gitlab_user} -- sh -c 'rm -rf node_modules/webpack-bundle-analyzer'
|
|
runuser -u ${gitlab_user} -- sh -c 'node_modules/.bin/webpack --config config/webpack.config.js'
|