9 lines
186 B
Text
9 lines
186 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting security scanner notification worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.security_notification_worker 2>&1
|
||
|
|
||
|
echo 'Security scanner notification worker exited'
|