X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2ec2c8ed2c5db174f3a83dc257fa4c4b3190f47b..3fa6aa4043286ad61e5f29c136d3cc2942e8750d:/build/rails-package-scripts/arvados-api-server.sh diff --git a/build/rails-package-scripts/arvados-api-server.sh b/build/rails-package-scripts/arvados-api-server.sh index c2b99f0fe0..a513c3ad09 100644 --- a/build/rails-package-scripts/arvados-api-server.sh +++ b/build/rails-package-scripts/arvados-api-server.sh @@ -1,4 +1,8 @@ #!/bin/sh +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + # This file declares variables common to all scripts for one Rails package. PACKAGE_NAME=arvados-api-server @@ -8,14 +12,16 @@ DOC_URL="http://doc.arvados.org/install/install-api-server.html#configure" RAILSPKG_DATABASE_LOAD_TASK=db:structure:load setup_extra_conffiles() { - setup_conffile initializers/omniauth.rb + # Rails 5.2 does not tolerate dangling symlinks in the initializers directory, and this one + # can still be there, left over from a previous version of the API server package. + rm -f $RELEASE_PATH/config/initializers/omniauth.rb } setup_before_nginx_restart() { # initialize git_internal_dir # usually /var/lib/arvados/internal.git (set in application.default.yml ) if [ "$APPLICATION_READY" = "1" ]; then - GIT_INTERNAL_DIR=$($COMMAND_PREFIX bundle exec rake config:check 2>&1 | grep git_internal_dir | awk '{ print $2 }') + GIT_INTERNAL_DIR=$($COMMAND_PREFIX bin/rake config:dump 2>&1 | grep GitInternalDir | awk '{ print $2 }' |tr -d '"') if [ ! -e "$GIT_INTERNAL_DIR" ]; then run_and_report "Creating git_internal_dir '$GIT_INTERNAL_DIR'" \ mkdir -p "$GIT_INTERNAL_DIR"