8 lines
159 B
Text
8 lines
159 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting storage replication worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.storagereplication 2>&1
|
||
|
|
||
|
echo 'Repository storage replication exited'
|