batch-shipyard/cargo/task_file_mover.sh

43 строки
1.0 KiB
Bash
Исходник Обычный вид История

#!/usr/bin/env bash
set -e
set -o pipefail
set -f
privatekey=$AZ_BATCH_NODE_STARTUP_DIR/certs/key.pem
for spec in "$@"; do
IFS=',' read -ra parts <<< "$spec"
# encrypt,creds,jobid,taskid,include,exclude,dst
encrypt=${parts[0],,}
if [ $encrypt == "true" ]; then
SHIPYARD_BATCH_ENV=`echo ${parts[1]} | base64 -d | openssl rsautl -decrypt -inkey $privatekey`
else
SHIPYARD_BATCH_ENV=${parts[1]}
fi
unset encrypt
jobid=${parts[2]}
taskid=${parts[3]}
incl=${parts[4]}
excl=${parts[5]}
dst=${parts[6]}
include=
if [ ! -z $incl ]; then
include="--include $incl"
fi
exclude=
if [ ! -z $excl ]; then
exclude="--exclude $excl"
fi
# create destination directory
dest=
if [ ! -z $dst ]; then
dest="--dst $dst"
mkdir -p $dst
fi
# ingress data from batch task
export SHIPYARD_BATCH_ENV=$SHIPYARD_BATCH_ENV
2017-10-04 00:10:39 +03:00
python3 /opt/batch-shipyard/task_file_mover.py $jobid $taskid $include $exclude $dest
done