2021-09-02 09:07:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source "$(dirname "$0")/common-8"
|
|
|
|
export PATH=/usr/sbin:/usr/bin:/root/bin
|
|
|
|
TARGET_DIR="/mnt/compose/8"
|
2022-05-20 05:56:48 +00:00
|
|
|
SHORT=i686-devel
|
2021-09-02 09:07:01 +00:00
|
|
|
CONFIG=/etc/pungi-prod-32/r8-i686-devel.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"
|
|
|
|
LABEL="--production --no-label"
|
|
|
|
|
|
|
|
CMD="pungi-koji --config=$CONFIG --old-composes=$TARGET_DIR $SKIP $LABEL"
|
|
|
|
#COMPOSE_ID="Rocky-8-20210625.n.0"
|
|
|
|
|
|
|
|
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
|