46 lines
1.8 KiB
Bash
Executable file
46 lines
1.8 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 'bundle exec rake db:schema:load'
|
|
else
|
|
echo "gitlab_production database is not empty, skipping gitlab setup"
|
|
fi
|
|
|
|
runuser -u ${gitlab_user} -- sh -c '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 install'
|
|
|
|
echo "Precompiling locales..."
|
|
runuser -u ${gitlab_user} -- sh -c 'bundle exec rake gettext:po_to_json'
|
|
|
|
echo "Precompiling assets..."
|
|
runuser -u ${gitlab_user} -- sh -c '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_PATH=/usr/share/gitlab/node_modules webpack --config config/webpack.config.js'
|