diff --git a/nfv.conf b/nfv.conf new file mode 100644 index 0000000..21ae48d --- /dev/null +++ b/nfv.conf @@ -0,0 +1,48 @@ +release_name = "Rocky Linux NFV" +release_short = "NFV" +release_version = "8" +release_is_layered = False + +variants_file='variants-nfv.xml' +sigkeys = ['6D745A60'] +create_jigdo = False + +pkgset_source='koji' + +pkgset_koji_tag='nfv8-el8-compose' +gather_method = { + '^.*': { # For all variants + 'comps': 'nodeps', # resolve dependencies for packages from comps file + 'module': 'nodeps', # but not for packages from modules + } +} + +gather_backend = 'dnf' +greedy_method = 'build' +koji_profile = "koji" + +check_deps = False + +filter_packages = [ + ('^extras$', { + '*': [ + '*', + ], + }), +] + +additional_packages = [ + ('^nfv$', { + '*': [ + '*', + ], + }), +] + +createiso_skip = [ + + ('^extras$', { + '*': True, + 'src': True + }), +] diff --git a/scripts/updates-8-nfv.sh b/scripts/updates-8-nfv.sh new file mode 100755 index 0000000..1505dd3 --- /dev/null +++ b/scripts/updates-8-nfv.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +TARGET_DIR="/mnt/compose/8" +SHORT=NFV +CONFIG=/etc/pungi-prod/nfv.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 $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 diff --git a/variants-nfv.xml b/variants-nfv.xml new file mode 100644 index 0000000..9d7ee35 --- /dev/null +++ b/variants-nfv.xml @@ -0,0 +1,11 @@ + + + + + + aarch64 + ppc64le + x86_64 + + +