taler-deployment

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

commit cc103cb587947056c3db371612eff8c929665690
parent e24e26596315857a9c3f93114827abbc5d47a7a2
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue,  1 Oct 2019 18:59:06 +0200

allow auditor entry to already exist

Diffstat:
Mbin/taler-deployment-keyup | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup @@ -110,7 +110,12 @@ chmod -R 770 $EXCHANGE_WIREFEES/* || true taler-auditor-exchange \ -m $EXCHANGE_PUB \ - -u $EXCHANGE_URL || exit 1 + -u $EXCHANGE_URL || ret=$? + +if [[ "$ret" != 4 ]] && [[ "$ret" != 0 ]]; then + echo "unexpected exit code ($ret) of taler-auditor-exchange" >&2 + exit 1 +fi # Checks whether any denom key was generated, and # only sign it if so.