taler-deployment

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

commit dd426ec22149a3e4554ee9c40ce8e361910ba27e
parent f6bde4ef887a00d68ffa1b08aba3ad8820e68df8
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Tue, 14 Feb 2017 14:59:27 +0100

Auditor signing tool

Diffstat:
Abin/taler-deployment-auditor-sign | 12++++++++++++
Mbootstrap-standalone | 4++--
2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/bin/taler-deployment-auditor-sign b/bin/taler-deployment-auditor-sign @@ -0,0 +1,12 @@ +#!/bin/bash + +if test -z $TALER_CONFIG_ENV; then + echo Please run 'source ~/activate' beforehand. + exit 1 +fi + +taler-auditor-sign \ + -m $(taler-config -s exchange -o MASTER_PUBLIC_KEY) \ + -u https://auditor.${TALER_CONFIG_ENV}.taler.net/ \ + -o $(taler-config -s exchangedb -o AUDITOR_BASE_DIR -f) \ + -r ~/shared-data/taler/exchange/auditor-request/auditor_request diff --git a/bootstrap-standalone b/bootstrap-standalone @@ -50,11 +50,11 @@ cat >$HOME/activate <<EOL #!/bin/bash function taler-config-generate () { - echo "Command disabled. Clease use taler-deployment-config-generate instead." + echo "Command disabled. Please use taler-deployment-config-generate instead." return 1 } function taler-exchange-keyup () { - echo "Command disabled. Clease use taler-deployment-keyup instead." + echo "Command disabled. Please use taler-deployment-keyup instead." } export PATH="$HOME/deployment/bin:$HOME/local/bin:\$PATH"