16 lines
431 B
Bash
Executable file
16 lines
431 B
Bash
Executable file
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
# Read debian specific configuration
|
|
. /etc/gitlab-common/gitlab-common.conf
|
|
. /etc/gitlab/gitlab-debian.conf
|
|
export DB RAILS_ENV
|
|
|
|
cd /usr/share/gitlab
|
|
|
|
# Remove all lines from Gemfile.lock
|
|
runuser -u ${gitlab_user} -- sh -c "touch ${gitlab_data_dir}/Gemfile.lock && \
|
|
truncate -s 0 ${gitlab_data_dir}/Gemfile.lock"
|
|
# Regenerate Gemfile.lock
|
|
runuser -u ${gitlab_user} -- sh -c '/usr/bin/bundle install --local'
|