forked from sig_core/toolkit
30 lines
614 B
Plaintext
30 lines
614 B
Plaintext
|
#!/bin/bash
|
||
|
# Parses a local compose's repos
|
||
|
#set -x
|
||
|
|
||
|
if [ -n "$1" ]; then
|
||
|
MAJOR=$1
|
||
|
else
|
||
|
echo "Major version not specified"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
export RLVER=$MAJOR
|
||
|
source common
|
||
|
|
||
|
drop="${PREPOPDROP}"
|
||
|
current=$(pwd)
|
||
|
compose_dir="${COMPOSE_BASEDIR}/${MAJOR}/latest-Rocky-${MAJOR}/compose"
|
||
|
|
||
|
pushd "${compose_dir}" || { echo "Could not change directory"; exit 1; }
|
||
|
/usr/bin/python3 "${current}/prepopulate_parser.py" --pungi
|
||
|
ret_val=$?
|
||
|
popd || { echo "Could not change back..."; exit 1; }
|
||
|
|
||
|
if [ "$ret_val" -ne "0" ]; then
|
||
|
echo "There was an error running through the parser."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "File located at: $drop"
|