Merge pull request #282 from zammad/mh/switch-to-background-services

Maintenance: Switch from scheduler.rb to background-services.rb
This commit is contained in:
Marcel Herrguth 2022-06-28 10:53:43 +02:00 committed by GitHub
commit 834ede5ffe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -155,9 +155,9 @@ if [ "$1" = 'zammad-scheduler' ]; then
cd "${ZAMMAD_DIR}"
echo "starting scheduler..."
echo "starting background services..."
exec bundle exec script/scheduler.rb run
exec bundle exec script/background-worker.rb start
fi

View File

@ -44,7 +44,6 @@ if [ "$1" = 'builder' ]; then
bundle install
sed -e 's#.*adapter: postgresql# adapter: nulldb#g' -e 's#.*username:.*# username: postgres#g' -e 's#.*password:.*# password: \n host: zammad-postgresql\n#g' < contrib/packager.io/database.yml.pkgr > config/database.yml
sed -i "/require 'rails\/all'/a require\ 'nulldb'" config/application.rb
sed -i 's/.*scheduler_\(err\|out\).log.*//g' script/scheduler.rb
touch db/schema.rb
bundle exec rake assets:precompile
rm -r tmp/cache