pungi-rocky/scripts/produce-8-lookahead.sh

24 lines
549 B
Bash
Raw Normal View History

2023-01-12 23:59:23 +00:00
#!/bin/bash
source "$(dirname "$0")/common-8"
export PATH=/usr/sbin:/usr/bin:/root/bin
TARGET_DIR="/mnt/compose/8-LookAhead"
SHORT=Rocky
2023-01-17 22:23:13 +00:00
CONFIG=/etc/pungi-lh/rockylh.conf
2023-01-12 23:59:23 +00:00
# Unused for now
OLDCOMPOSE_ID=$(cat $TARGET_DIR/latest-$SHORT-8/COMPOSE_ID)
SKIP=""
2023-01-14 04:00:30 +00:00
#LABEL="--nightly --label RC-${REVISION}"
LABEL="--test"
2023-01-12 23:59:23 +00:00
CMD="pungi-koji --config=$CONFIG $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