10 lines
195 B
Text
10 lines
195 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting log rotation worker'
|
||
|
|
||
|
QUAYPATH=${QUAYPATH:-"."}
|
||
|
cd ${QUAYDIR:-"/"}
|
||
|
PYTHONPATH=$QUAYPATH venv/bin/python -m workers.logrotateworker
|
||
|
|
||
|
echo 'Log rotation worker exited'
|