commit 2a19c463573d77dd3677a60d915c14cb3aeec252 parent 52caf92da5820e86d778a48bf793ac55db5e1f8f Author: Florian Dold <florian.dold@gmail.com> Date: Wed, 22 Jan 2020 15:15:14 +0100 set exchange pw Diffstat:
| M | bin/taler-deployment-prepare | | | 15 | +++++++++++++++ |
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git a/bin/taler-deployment-prepare b/bin/taler-deployment-prepare @@ -3,6 +3,7 @@ # Prepare a deployment for execution: # * generate the configuration # * put keys in the right place +# * set bank password for the exchange # * sign the exchange's wire response # * run some sanity checks (FIXME: not done yet!) @@ -86,3 +87,17 @@ fi taler-exchange-wire chmod 770 $WIRE_RESPONSE + + +## +## Step 4: +## + +case $TALER_ENV_NAME in + demo|test|int) + taler-bank-manage django changepassword_unsafe Exchange x + ;; + *) + echo "Not setting unsafe Exchange bank account password for env $TALER_ENV_NAME" + ;; +esac