9 lines
208 B
Text
9 lines
208 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting Queue cleanup worker'
|
||
|
|
||
|
QUAYPATH=${QUAYPATH:-"."}
|
||
|
cd ${QUAYDIR:-"/"}
|
||
|
PYTHONPATH=$QUAYPATH venv/bin/python -m workers.queuecleanupworker 2>&1
|
||
|
|
||
|
echo 'Repository Queue cleanup exited'
|