## CANDIDATE COMPOSE ## #### Blockers #### #### Freeze exceptions #### * [FEDORA-2023-76b7e94b44: livesys-scripts-0.4.3-1.fc38](https://bodhi.fedoraproject.org/updates/FEDORA-2023-76b7e94b44) for [⧣2172854](https://bugzilla.redhat.com/show_bug.cgi?id=2172854) * [FEDORA-CONTAINER-2023-6feed2a892: fedora-toolbox-38-15](https://bodhi.fedoraproject.org/updates/FEDORA-CONTAINER-2023-6feed2a892) for [⧣2183038](https://bugzilla.redhat.com/show_bug.cgi?id=2183038) #### Releng commands #### Untag all previous builds: ``` koji list-tagged f38-compose --quiet | awk '{print $1}' | xargs -rt koji untag-pkg f38-compose ``` and then tag the new builds: ``` blockers=( ) fes=( livesys-scripts-0.4.3-1.fc38 fedora-toolbox-38-15 ) koji tag-build f38-compose ${blockers[@]} ${fes[@]} ``` ## FREEZE PUSH ## #### Blockers #### #### Freeze exceptions #### * [FEDORA-2023-76b7e94b44: livesys-scripts-0.4.3-1.fc38](https://bodhi.fedoraproject.org/updates/FEDORA-2023-76b7e94b44) for [⧣2172854](https://bugzilla.redhat.com/show_bug.cgi?id=2172854) #### Releng commands #### Make sure all builds are pending stable: ``` blockers=( ) fes=( FEDORA-2023-76b7e94b44 ) updates=$(echo "${blockers[@]} ${fes[@]}" | xargs echo -n) # trim whitespace sudo -u apache bodhi-push --updates "${updates// /,}" ```