taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit efb78d1592826800b155be220898c47724096f2e
parent f62dc88df41ce4e23c9448766c354473f9327cce
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Mon, 15 Sep 2025 22:17:09 +0200

aptly s/bookworm/trixie

Diffstat:
Maptly/aptly-init.sh | 8++++----
Maptly/aptly-publish.sh | 8++++----
Maptly/entr.sh | 2+-
3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/aptly/aptly-init.sh b/aptly/aptly-init.sh @@ -6,12 +6,12 @@ REPOROOT="${HOME}"/.aptly/public PUBLISHPATH="${HOME}"/public_nightly_repo DATESTAMP=$(date -Iseconds) SIGNING_KEY=79435E7226F4BD5332D657AC61BB851C184F44CF -mkdir -p "${HOME}"/incoming/bookworm-taler-ci -aptly repo create -distribution=bookworm -component=main taler-ci-snapshots -aptly repo add taler-ci-snapshots /home/aptbuilder/incoming/bookworm-taler-ci || true +mkdir -p "${HOME}"/incoming/trixie-taler-ci +aptly repo create -distribution=trixie -component=main taler-ci-snapshots +aptly repo add taler-ci-snapshots /home/aptbuilder/incoming/trixie-taler-ci || true aptly snapshot create "taler-${DATESTAMP}" from repo taler-ci-snapshots aptly -gpg-provider="gpg2" publish -architectures="amd64,arm64" -gpg-key="${SIGNING_KEY}" snapshot "taler-${DATESTAMP}" -aptly -gpg-provider="gpg2" publish -architectures="amd64,arm64" switch bookworm "taler-${DATESTAMP}" +aptly -gpg-provider="gpg2" publish -architectures="amd64,arm64" switch trixie "taler-${DATESTAMP}" # Publish a list of all packages in the repo aptly repo show -with-packages taler-ci-snapshots > "${REPOROOT}"/packages.txt diff --git a/aptly/aptly-publish.sh b/aptly/aptly-publish.sh @@ -11,7 +11,7 @@ DATESTAMP=$(date -Iseconds) ### # Move any packages older than 30 days to the archive mkdir -p "${HOME}"/archive -mv $(find "${HOME}"/incoming/bookworm-taler-ci/ -mindepth 1 -mtime +30 | xargs echo) "${HOME}"/archive/ || true +mv $(find "${HOME}"/incoming/trixie-taler-ci/ -mindepth 1 -mtime +30 | xargs echo) "${HOME}"/archive/ || true rm -rf "${HOME}"/garbagecollect mv "${REPOROOT}"/pool "${HOME}"/garbagecollect || true @@ -22,10 +22,10 @@ aptly db cleanup ### ### Publishing ### -aptly repo create -distribution=bookworm -component=main taler-ci-snapshots -aptly repo add taler-ci-snapshots /home/aptbuilder/incoming/bookworm-taler-ci || true +aptly repo create -distribution=trixie -component=main taler-ci-snapshots +aptly repo add taler-ci-snapshots /home/aptbuilder/incoming/trixie-taler-ci || true aptly snapshot create "taler-${DATESTAMP}" from repo taler-ci-snapshots -aptly -gpg-provider="gpg2" publish -architectures="amd64,arm64" switch bookworm "taler-${DATESTAMP}" +aptly -gpg-provider="gpg2" publish -architectures="amd64,arm64" switch trixie "taler-${DATESTAMP}" rsync -avP --delete-before "${REPOROOT}"/ "${PUBLISHPATH}"/ # Publish a list of all packages in the repo diff --git a/aptly/entr.sh b/aptly/entr.sh @@ -2,5 +2,5 @@ set -xo while true ; do - echo "${HOME}/incoming/bookworm-taler-ci" | entr -n -d "${HOME}/taler-deployment/aptly/aptly-publish.sh" ; sleep 1 || true + echo "${HOME}/incoming/trixie-taler-ci" | entr -n -d "${HOME}/taler-deployment/aptly/aptly-publish.sh" ; sleep 1 || true done