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

42 lines
1.3 KiB
Bash
Raw Normal View History

2015-09-12 15:42:12 +05:30
#! /bin/sh
# Read and export debian specific configuration
# Only exported variables will be passed on to gitlab app
2016-02-18 17:53:04 +05:30
export $(cat /etc/gitlab/gitlab-debian.conf)
glcheck() {
# Check gitlab is configured correctly
printf "Check if Gitlab is configured correctly...\n"
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake gitlab:check RAILS_ENV=production'
}
if [ "$1" = "check" ]; then
glcheck
exit
fi
2016-02-18 18:12:32 +05:30
if ! [ -f "${gitlab_app_root}/config/secrets.yml" ]; then
echo "Creating secrets.yml..."
cd ${gitlab_app_root}
su gitlab -c 'bundle exec rake config/initializers/secret_token.rb'
2016-04-05 21:06:24 +05:30
fi
2016-04-05 12:37:43 +05:30
# Check if the db is already present
2016-04-04 22:39:31 +05:30
if [ "$(LANG=C su postgres -c "psql gitlab_production -c \"\d\"")" = \
"No relations found." ]; then
echo "Initializing database..."
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake db:schema:load'
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake db:seed_fu'
else
echo "gitlab_production database is not empty, skipping gitlab setup"
2016-04-05 12:17:23 +05:30
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake db:migrate'
2016-04-04 22:39:31 +05:30
fi
2016-02-12 17:32:34 +05:30
# Restrict permissions for secret files
chmod 0700 ${gitlab_data_dir}/.gitlab_shell_secret
2015-09-12 15:42:12 +05:30
echo "Precompiling assets..."
2016-08-31 13:33:35 +05:30
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake tmp:cache:clear assets:precompile RAILS_ENV=production'
2016-01-23 23:02:18 +05:30
glcheck