debian-mirror-gitlab/debian/rake-tasks.sh

46 lines
1.9 KiB
Bash
Raw Normal View History

2015-09-12 15:42:12 +05:30
#! /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
2017-12-13 00:51:58 +05:30
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
2016-04-04 22:39:31 +05:30
echo "Initializing database..."
2016-10-01 15:08:03 +05:30
test -f ${gitlab_home}/db/schema.rb || \
2017-04-21 15:03:54 +05:30
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"
2017-04-21 15:03:54 +05:30
runuser -u ${gitlab_user} -- sh -c 'bundle exec rake db:schema:load'
2016-04-04 22:39:31 +05:30
else
echo "gitlab_production database is not empty, skipping gitlab setup"
fi
2016-02-12 17:32:34 +05:30
2017-12-13 00:51:58 +05:30
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"
2017-08-22 19:19:31 +05:30
runuser -u ${gitlab_user} -- sh -c 'install -d /var/lib/gitlab/node_modules'
runuser -u ${gitlab_user} -- sh -c 'rm -rf node_modules/jquery'
runuser -u ${gitlab_user} -- sh -c 'npm install npm'
runuser -u ${gitlab_user} -- sh -c 'node_modules/.bin/npm install'
# workaround for broken libjs-jquery-atwho #890391
# npm i at.js won't work as it needs jquery@^1.7.0 as peer dependency
runuser -u ${gitlab_user} -- sh -c 'wget -O /tmp/at.js.tar.gz `npm view at.js dist.tarball`'
runuser -u ${gitlab_user} -- sh -c 'tar -C node_modules --transform "s/package/at.js/" -zxf /tmp/at.js.tar.gz'
runuser -u ${gitlab_user} -- sh -c 'npm i document-register-element@1.3.0'
2017-09-09 22:17:18 +05:30
runuser -u ${gitlab_user} -- sh -c 'rm -rf node_modules/webpack'
2017-09-04 10:51:38 +05:30
runuser -u ${gitlab_user} -- sh -c 'NODE_PATH=/usr/share/gitlab/node_modules webpack --config config/webpack.config.js'
2015-09-12 15:42:12 +05:30
echo "Precompiling assets..."
2017-04-21 15:03:54 +05:30
runuser -u ${gitlab_user} -- sh -c 'bundle exec rake tmp:cache:clear assets:precompile'