Add run commands for backfill worker

This commit is contained in:
Joseph Schorr 2018-08-08 17:55:51 -04:00
parent 03ea3a3250
commit f2d50b3f8e
3 changed files with 16 additions and 1 deletions

View file

@ -0,0 +1,4 @@
#!/bin/sh
# Start the logger
exec logger -i -t manifestbackfillworker

View file

@ -0,0 +1,9 @@
#! /bin/bash
echo 'Starting manifest backfill worker'
QUAYPATH=${QUAYPATH:-"."}
cd ${QUAYDIR:-"/"}
PYTHONPATH=$QUAYPATH venv/bin/python -m workers.manifestbackfillworker 2>&1
echo 'Repository manifest backfill exited'