cmd/satellite: Add run auditor to satellite entrypoint.

Needed to support new auditor processess

Change-Id: I6687a667c123c69a335317216affad3a14ab7b9c
This commit is contained in:
Ethan Adams 2023-01-03 14:22:18 -06:00 committed by Storj Robot
parent ab8f22a6d0
commit d29abed2aa

View File

@ -33,4 +33,8 @@ if [ "${SATELLITE_REPAIR:-}" = "true" ]; then
exec ./satellite run repair $RUN_PARAMS "$@"
fi
if [ "${SATELLITE_AUDITOR:-}" = "true" ]; then
exec ./satellite run auditor $RUN_PARAMS "$@"
fi
exec ./satellite run $RUN_PARAMS "$@"