better error handling
This commit is contained in:
parent
9aa8a7540d
commit
c93f1422b1
@ -23,17 +23,16 @@ if [ "$1" = 'zammad-railsserver' ]; then
|
||||
# db mirgrate
|
||||
set +e
|
||||
bundle exec rake db:migrate &> /dev/null
|
||||
DB_CHECK="$?"
|
||||
set -e
|
||||
|
||||
if [ $? != 0 ]; then
|
||||
if [ "${DB_CHECK}" != "0" ]; then
|
||||
echo "creating db & searchindex..."
|
||||
set -e
|
||||
bundle exec rake db:create
|
||||
bundle exec rake db:migrate
|
||||
bundle exec rake db:seed
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
# es config
|
||||
bundle exec rails r "Setting.set('es_url', 'http://zammad-elasticsearch:9200')"
|
||||
bundle exec rake searchindex:rebuild
|
||||
|
Loading…
Reference in New Issue
Block a user