pungi-rocky/scripts/updates-8-gluster9.sh

20 lines
584 B
Bash
Raw Permalink Normal View History

2021-06-28 18:22:31 +00:00
#!/bin/bash
2021-07-06 22:35:37 +00:00
source "$(dirname "$0")/common-8"
2021-06-28 18:22:31 +00:00
TARGET_DIR="/mnt/compose/8"
SHORT=Gluster9
CONFIG=/etc/pungi-prod/gluster9.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"
2021-06-28 18:23:27 +00:00
LABEL="--production --no-label"
2021-06-28 18:22:31 +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