summaryrefslogtreecommitdiff
path: root/bin/taler-deployment-prepare
diff options
context:
space:
mode:
Diffstat (limited to 'bin/taler-deployment-prepare')
-rwxr-xr-xbin/taler-deployment-prepare5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/taler-deployment-prepare b/bin/taler-deployment-prepare
index 3b33442..2174de0 100755
--- 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!
##