Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rmt-server-image for openSUSE:Factory checked in at 2024-08-09 16:15:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rmt-server-image (Old) and /work/SRC/openSUSE:Factory/.rmt-server-image.new.7232 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rmt-server-image" Fri Aug 9 16:15:47 2024 rev:18 rq:1192728 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/rmt-server-image/rmt-server-image.changes 2024-08-05 17:24:38.063386251 +0200 +++ /work/SRC/openSUSE:Factory/.rmt-server-image.new.7232/rmt-server-image.changes 2024-08-09 16:16:53.388506214 +0200 @@ -1,0 +2,10 @@ +Thu Aug 8 16:52:23 UTC 2024 - Natnael Getahun <natnael.geta...@suse.com> + +- update rmt.conf to store airgap state in a separate config var. + +------------------------------------------------------------------- +Thu Aug 8 16:43:43 UTC 2024 - Dirk Mueller <dmuel...@suse.com> + +- remove oci reference annotation again + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.XH6h98/_old 2024-08-09 16:16:54.124536944 +0200 +++ /var/tmp/diff_new_pack.XH6h98/_new 2024-08-09 16:16:54.128537111 +0200 @@ -35,7 +35,6 @@ LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime#openSUSE_BCI" LABEL org.opensuse.release-stage="released" # endlabelprefix -LABEL org.opencontainers.image.revision="%DISTURL%" LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/rmt-server-image/README.md" RUN set -euo pipefail; zypper -n in --no-recommends rmt-server catatonit; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2} ++++++ entrypoint.sh ++++++ --- /var/tmp/diff_new_pack.XH6h98/_old 2024-08-09 16:16:54.176539115 +0200 +++ /var/tmp/diff_new_pack.XH6h98/_new 2024-08-09 16:16:54.180539282 +0200 @@ -25,7 +25,7 @@ # Create adjusted /etc/rmt.conf echo -e "database:\n host: ${MYSQL_HOST}\n database: ${MYSQL_DATABASE}\n username: ${MYSQL_USER}\n password: ${MYSQL_PASSWORD}" > /etc/rmt.conf echo -e " adapter: mysql2\n encoding: utf8\n timeout: 5000\n pool: 5\n" >> /etc/rmt.conf -echo -e "scc:\n username: ${SCC_USERNAME}\n password: ${SCC_PASSWORD}\n sync_systems: ${SCC_SYNC}\n" >> /etc/rmt.conf +echo -e "scc:\n username: ${SCC_USERNAME}\n password: ${SCC_PASSWORD}\n sync_systems: true\n scc_sync: ${SCC_SYNC}\n" >> /etc/rmt.conf echo -e "log_level:\n rails: debug" >> /etc/rmt.conf if [ $# -eq 0 ]; then @@ -37,7 +37,7 @@ pushd /usr/share/rmt > /dev/null /usr/share/rmt/bin/rails db:create db:migrate RAILS_ENV=production popd > /dev/null - if [ ${SCC_SYNC} != "false" ]; then + if [ ${SCC_SYNC} == "true" ]; then echo "Syncing product list" rmt-cli sync for PRODUCT in $SCC_PRODUCT_ENABLE