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