11 lines
143 B
Bash
11 lines
143 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
# wait for RabbitMQ server to start
|
|
sleep 10
|
|
|
|
rm -f './celerybeat.pid'
|
|
celery -A core beat -l INFO
|