Kill all tasks on shutdown and startup
BindsTo will kill all the tasks when systemctl stop box is executed. But when restarted, it keeps the tasks running. Because of this behavior, we kill the tasks on startup and stop of the box code.
This commit is contained in:
@@ -19,7 +19,11 @@ fi
|
||||
|
||||
task_id="$1"
|
||||
|
||||
service_name="cloudron-task-${task_id}"
|
||||
|
||||
systemctl kill --signal=SIGTERM "${service_name}"
|
||||
if [[ "${task_id}" == "all" ]]; then
|
||||
systemctl list-units --full --no-legend cloudron-task-* # just to show who was running
|
||||
systemctl kill --signal=SIGTERM cloudron-task-* || true
|
||||
else
|
||||
readonly service_name="cloudron-task-${task_id}"
|
||||
systemctl kill --signal=SIGTERM "${service_name}" || true
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user