taler-deployment

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

commit c390d35cf1f08f67a7f1268373c01635f7cbc954
parent 06dec68e1513addb9d7b3cb7437f049304d0c22e
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Sat,  8 Jun 2019 19:35:34 +0200

Keyup.

Refuse to run if taler.conf is not found.

Diffstat:
Mbin/taler-deployment-keyup | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup @@ -10,6 +10,11 @@ if test -z $TALER_CONFIG_ENV; then exit 1 fi +if ! test -f $HOME/.config/taler.conf; then + echo "Please generate config file first (taler-deployment-config-generate)" + exit 1 +fi + AUDITOR_REQUEST_DIR=$(taler-config -s exchangedb -o autitor_inputs -f) AUDITOR_BASE_DIR=$(taler-config -s exchangedb -o auditor_base_dir -f) EXHCANGE_PUB=$(taler-config -s exchange -o master_public_key)