commit c28e84770b20bc6cd86ddd3036dd2bc50744647d
parent a3858557a526069a2068154b72c9fc63d4c74dbb
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 23 Feb 2020 20:07:43 +0100
-m option is required
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/bin/taler-deployment-prepare b/bin/taler-deployment-prepare
@@ -50,13 +50,14 @@ esac
## Step 2: Copy key material and update denom keys
##
+EXCHANGE_MASTER_PUB=$(taler-config -s exchange -o master_public_key)
taler-auditor-exchange \
- -m $(taler-config -s exchange -o master_public_key) \
+ -m $EXCHANGE_MASTER_PUB \
-u $(taler-config -s exchange -o base_url) || true
rm -f auditor.in
taler-exchange-keyup -o auditor.in
-taler-auditor-sign -r auditor.in -o auditor.out
+taler-auditor-sign -m $EXCHANGE_MASTER_PUB -r auditor.in -o auditor.out
rm -f auditor.in auditor.out # we don't actually use the auditor's signatures in the demo!
##