9 lines
134 B
Text
9 lines
134 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting log rotation worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.logrotateworker
|
||
|
|
||
|
echo 'Log rotation worker exited'
|