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