add note about celery stopping

This commit is contained in:
wh1te909 2023-01-18 20:13:06 +00:00
parent f43627b170
commit fc83e11d8b
1 changed files with 7 additions and 1 deletions

View File

@ -121,7 +121,13 @@ if ! [[ $CHECK_NATS_WEBSOCKET ]]; then
fi
for i in celerybeat celery nginx nats-api nats rmm daphne
printf >&2 "${GREEN}Stopping celery and celerybeat services (this might take a while)...${NC}\n"
for i in celerybeat celery
do
sudo systemctl stop ${i}
done
for i in nginx nats-api nats rmm daphne
do
printf >&2 "${GREEN}Stopping ${i} service...${NC}\n"
sudo systemctl stop ${i}