8 lines
161 B
Bash
Executable file
8 lines
161 B
Bash
Executable file
#! /bin/bash
|
|
|
|
echo 'Starting security scanner worker'
|
|
|
|
cd /
|
|
venv/bin/python -m workers.securityworker.securityworker 2>&1
|
|
|
|
echo 'Security scanner worker exited'
|