8 lines
155 B
Bash
8 lines
155 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting webhook worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.webhookworker --log=/mnt/logs/webhookworker.log
|
||
|
|
||
|
echo 'Webhook worker exited'
|