[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [taler-deployment] branch master updated: allow auditor ent
From: |
gnunet |
Subject: |
[GNUnet-SVN] [taler-deployment] branch master updated: allow auditor entry to already exist |
Date: |
Tue, 01 Oct 2019 18:59:12 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository deployment.
The following commit(s) were added to refs/heads/master by this push:
new cc103cb allow auditor entry to already exist
cc103cb is described below
commit cc103cb587947056c3db371612eff8c929665690
Author: Florian Dold <address@hidden>
AuthorDate: Tue Oct 1 18:59:06 2019 +0200
allow auditor entry to already exist
---
bin/taler-deployment-keyup | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup
index 337d4b2..6cd61ca 100755
--- 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.
--
To stop receiving notification emails like this one, please contact
address@hidden.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [taler-deployment] branch master updated: allow auditor entry to already exist,
gnunet <=