Skip to content

Commit

Permalink
Merge pull request #1951 from SUSE/for-deploy-7
Browse files Browse the repository at this point in the history
🤖: Update build recipes for SP7
  • Loading branch information
dirkmueller authored Oct 31, 2024
2 parents ad6cbc4 + 58c195b commit 9911294
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 10 deletions.
2 changes: 1 addition & 1 deletion rmt-server-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
FROM suse/sle15:15.7

RUN set -euo pipefail; \
zypper -n install --no-recommends rmt-server catatonit; \
zypper -n install --no-recommends rmt-server catatonit bash; \
zypper -n clean; \
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}

Expand Down
34 changes: 25 additions & 9 deletions rmt-server-image/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e

# PV could be empty, make sure the directories exist
Expand All @@ -23,30 +23,46 @@ MYSQL_USER="${MYSQL_USER:-rmt}"
SCC_SYNC="${SCC_SYNC:-true}"

# 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: true\n scc_sync: ${SCC_SYNC}\n" >> /etc/rmt.conf
echo -e "log_level:\n rails: debug" >> /etc/rmt.conf
cat > /etc/rmt.conf <<EOF
database:
host: ${MYSQL_HOST}
database: ${MYSQL_DATABASE}
username: ${MYSQL_USER}
password: ${MYSQL_PASSWORD}
adapter: mysql2
encoding: utf8
timeout: 5000
pool: 5
scc:
username: ${SCC_USERNAME}
password: ${SCC_PASSWORD}
sync_systems: true
scc_sync: ${SCC_SYNC}
log_level:
rails: debug
EOF

if [ $# -eq 0 ]; then
set -- /usr/share/rmt/bin/rails server -e production
fi

if [ "$1" == "/usr/share/rmt/bin/rails" -a "$2" == "server" ]; then
if [ "$1" = "/usr/share/rmt/bin/rails" ] && [ "$2" = "server" ]; then
echo "Create/migrate SUSE RMT database"
pushd /usr/share/rmt > /dev/null
/usr/share/rmt/bin/rails db:create db:migrate RAILS_ENV=production
popd > /dev/null
if [ ${SCC_SYNC} == "true" ]; then
if [ "${SCC_SYNC}" = "true" ]; then
echo "Syncing product list"
rmt-cli sync
for PRODUCT in $SCC_PRODUCT_ENABLE
do
rmt-cli products enable $PRODUCT
rmt-cli products enable "$PRODUCT"
done
for PRODUCT in $SCC_PRODUCT_DISABLE
do
rmt-cli products disable $PRODUCT
rmt-cli products disable "$PRODUCT"
done
rmt-cli repos clean
fi
Expand Down
5 changes: 5 additions & 0 deletions rmt-server-image/rmt-server-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Oct 31 16:24:48 UTC 2024 - SUSE Update Bot <[email protected]>

- entry point refactoring

-------------------------------------------------------------------
Wed Oct 30 15:35:27 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down

0 comments on commit 9911294

Please sign in to comment.