2021-06-26 02:39:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-07-06 22:35:37 +00:00
|
|
|
source "$(dirname "$0")/common-8"
|
2021-06-26 02:39:34 +00:00
|
|
|
TARGET_DIR="/mnt/compose/8"
|
|
|
|
SHORT=Extras
|
|
|
|
CONFIG=/etc/pungi-prod/extras.conf
|
|
|
|
# Unused for now
|
|
|
|
OLDCOMPOSE_ID=$(cat $TARGET_DIR/latest-$SHORT-8/COMPOSE_ID)
|
|
|
|
SKIP="--skip-phase buildinstall --skip-phase createiso --skip-phase extra_isos --skip-phase productimg"
|
2023-03-20 18:05:01 +00:00
|
|
|
LABEL="--production --label RC-8.9"
|
2021-06-26 02:39:34 +00:00
|
|
|
CMD="pungi-koji --config=$CONFIG --old-composes=$TARGET_DIR $OLD_COMPOSES_DIR $SKIP $LABEL"
|
|
|
|
|
|
|
|
if [ -z "$COMPOSE_ID" ]; then
|
|
|
|
CMD="$CMD --target-dir=$TARGET_DIR"
|
|
|
|
else
|
|
|
|
CMD="$CMD --debug-mode --compose-dir=$TARGET_DIR/$COMPOSE_ID"
|
|
|
|
fi
|
|
|
|
|
|
|
|
time $CMD
|