8 lines
147 B
Text
8 lines
147 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting Queue cleanup worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.queuecleanupworker 2>&1
|
||
|
|
||
|
echo 'Repository Queue cleanup exited'
|