fix(ops): sync verified production baseline for AW-Rus DLP
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
BASE_DIR="/opt/activitywatch/dlp-content-analysis"
|
||||
VENV_PY="$BASE_DIR/.venv/bin/python"
|
||||
ANALYZER="$BASE_DIR/content_analyzer.py"
|
||||
|
||||
if [ ! -x "$VENV_PY" ]; then
|
||||
echo "ERROR: content-analysis virtualenv is missing: $VENV_PY" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exec "$VENV_PY" "$ANALYZER" "$@"
|
||||
Reference in New Issue
Block a user