taler-deployment

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

commit 8624c9adea0f96258079437eaf541a35dcb5973a
parent 29933c11ba019a56a137642e6b335e7811b39a28
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun,  9 Feb 2020 16:06:38 +0100

remove TALER_CHECKDB logic, was only partially supported and makes exchange code unnecessarily messy. We should use VMs to do the separation nicely

Diffstat:
Mbin/taler-deployment | 1-
Mbootstrap-reservetopper | 1-
Mbuildbot/coverage.sh | 3---
Mbuildbot/master.cfg | 2--
4 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment @@ -34,7 +34,6 @@ activate_template = """\ export PATH="$HOME/deployment/bin:$HOME/local/bin:{curr_path}" export PYTHONUSERBASE=$HOME/local export TALER_BOOTSTRAP_TIMESTAMP={timestamp} -export TALER_CHECKDB="postgres:///talercheck-$USER" export TALER_CONFIG_CURRENCY={currency} export TALER_ENV_NAME={envname} export TALER_ENV_URL_INTRO="https://{envname}.taler.net/" diff --git a/bootstrap-reservetopper b/bootstrap-reservetopper @@ -74,7 +74,6 @@ function taler-exchange-keyup () { export PATH="$HOME/deployment/bin:$HOME/local/bin:\$PATH" export PYTHONPATH="$HOME/local/lib/python3.5/site-packages" -export TALER_CHECKDB="postgres:///talercheck-$USER" export TALER_CONFIG_CURRENCY=$CURRENCY # DEPRECATED ALIAS! diff --git a/buildbot/coverage.sh b/buildbot/coverage.sh @@ -16,9 +16,6 @@ for codebase in merchant exchange ; do TOP="$HOME/sources/${codebase}/" REPORT_DIR="$HOME/sources/${codebase}/coverage_report" lcov -d $TOP -z - TALER_MERCHANTDB_POSTGRES_CONFIG=$TALER_CHECKDB \ - TALER_EXCHANGEDB_POSTGRES_CONFIG=$TALER_CHECKDB \ - TALER_AUDITORDB_POSTGRES_CONFIG=$TALER_CHECKDB \ cd $TOP make check || true mkdir -p $REPORT_DIR diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -495,7 +495,6 @@ LCOV_FACTORY.addStep( descriptionDone="Taler built", command=["./build.sh"], workdir="../../deployment/buildbot", - env={"TALER_CHECKDB": "postgres:///talercheck-${USER}"}, ) ) @@ -506,7 +505,6 @@ LCOV_FACTORY.addStep( descriptionDone="generating HTML report", command=["./coverage.sh"], workdir="../../deployment/buildbot", - env={"TALER_CHECKDB": "postgres:///talercheck-${USER}"}, ) )