2019-12-23 11:47:16 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# This file is in the public domain
|
|
|
|
# Wrapper around 'taler-bank-manage' to first configure the required
|
|
|
|
# testing accounts before launching the bank properly.
|
|
|
|
#
|
|
|
|
# Takes 3 arguments:
|
|
|
|
# $1: the configuration file name
|
|
|
|
# $2: the database name
|
|
|
|
# $3: serve-http or serve-uwsgi
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2020-02-04 22:37:49 +01:00
|
|
|
if [ "$#" -ne 3 ];
|
|
|
|
then
|
|
|
|
echo "illegal number of parameters"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-12-23 12:32:37 +01:00
|
|
|
# Ensure starting accounts exist
|
2019-12-23 11:47:16 +01:00
|
|
|
taler-bank-manage -c $1 --with-db $2 django provide_accounts
|
2020-01-17 15:03:19 +01:00
|
|
|
taler-bank-manage -c $1 --with-db $2 django add_bank_account 42
|
|
|
|
taler-bank-manage -c $1 --with-db $2 django add_bank_account 43
|
2019-12-23 11:47:16 +01:00
|
|
|
|
2020-10-30 22:12:02 +01:00
|
|
|
taler-bank-manage -c $1 --with-db $2 django changepassword_unsafe Exchange x
|
2019-12-23 11:47:16 +01:00
|
|
|
|
|
|
|
# Now run Django for good
|
2019-12-23 12:13:10 +01:00
|
|
|
exec taler-bank-manage -c $1 --with-db $2 $3
|