8 lines
143 B
Text
8 lines
143 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting chunk cleanup worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.chunkcleanupworker 2>&1
|
||
|
|
||
|
echo 'Chunk cleanup worker exited'
|