8 lines
147 B
Bash
8 lines
147 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting diffs worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.diffsworker --log=/mnt/logs/diffsworker.log
|
||
|
|
||
|
echo 'Diffs worker exited'
|