taler-deployment

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

commit 984bf339e40991a2948a9548653703211a3f71dd
parent 0c58e6159e89e23e0d8542d00a04ffa4894f3f09
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Tue, 23 May 2017 10:43:27 +0200

12 chars max for currency name and generating auditor blobs
for per-user envs.

Diffstat:
Mbin/taler-deployment-keyup | 12+++---------
Mbootstrap-standalone | 2+-
2 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup @@ -3,15 +3,9 @@ set -eu auditor_request=${HOME}/shared-data/exchange/auditor-request/auditor_request -if [[ ${TALER_CONFIG_STANDALONE:-0} = 1 ]]; then - # no auditor on env deployments for now - taler-exchange-keyup \ - -m ~/shared-data/exchange/offline-keys/master.priv -else - taler-exchange-keyup \ - -m ~/shared-data/exchange/offline-keys/master.priv \ - -o $auditor_request -fi +taler-exchange-keyup \ + -m ~/shared-data/exchange/offline-keys/master.priv \ + -o $auditor_request auditor_base_dir=$(taler-config -s exchangedb -o auditor_base_dir -f) exchange_master_pub=$(taler-config -s exchange -o master_public_key) diff --git a/bootstrap-standalone b/bootstrap-standalone @@ -10,7 +10,7 @@ set -eu ENVNAME=$USER BRANCH=master -CURRENCY=$(echo "*KUDOS-$USER" | cut -c 1-13) +CURRENCY=$(echo "*KUDOS-$USER" | cut -c 1-12) cd $HOME