summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-01-10 13:57:12 +0100
committerChristian Grothoff <christian@grothoff.org>2019-01-10 13:57:12 +0100
commit2143266a50d7f4fff243c1f5f1cff1cb07e081dc (patch)
tree506aa1f6023c2d31c058965be8d08c42f0201522
parent34c8dc504bf60371db258d3b19353e725d23b1bb (diff)
downloadexchange-2143266a50d7f4fff243c1f5f1cff1cb07e081dc.tar.gz
exchange-2143266a50d7f4fff243c1f5f1cff1cb07e081dc.tar.bz2
exchange-2143266a50d7f4fff243c1f5f1cff1cb07e081dc.zip
update tool to follow renaming of test -> taler-bank for the taler bank wire method
-rwxr-xr-xsrc/exchange/taler-config-generate26
-rw-r--r--src/exchange/taler-exchange-httpd.c2
2 files changed, 14 insertions, 14 deletions
diff --git a/src/exchange/taler-config-generate b/src/exchange/taler-config-generate
index 248faa0bc..280d5abb0 100755
--- a/src/exchange/taler-config-generate
+++ b/src/exchange/taler-config-generate
@@ -12,9 +12,9 @@
# -m, --merchant (generate configuration for the merchant)
# -t, --trusted (generate configuration for exchange and merchant, with exchange set as trusted with merchant)
# -w WIREFORMAT, --wire=WIREFORMAT (which wire plugin should we use)
-# --bank-url=URL (only for WIREFORMAT='test')
-# --exchange-bank-account=NUMBER (only for WIREFORMAT='test')
-# --merchant-bank-account=NUMBER (only for WIREFORMAT='test')
+# --bank-url=URL (only for WIREFORMAT='taler-bank')
+# --exchange-bank-account=NUMBER (only for WIREFORMAT='taler-bank')
+# --merchant-bank-account=NUMBER (only for WIREFORMAT='taler-bank')
##########################################
# set an initial value for the flags
@@ -26,7 +26,7 @@ ARG_JE=
ARG_JM=
ARG_M=0
ARG_T=0
-ARG_W=test
+ARG_W=taler-bank
ARG_BANK_URL=
ARG_EXCHANGE_BANK_ACCOUNT=
ARG_MERCHANT_BANK_ACCOUNT=
@@ -108,32 +108,32 @@ else
fi
##########################################
-# Assemble JSON description of wireformat for "test" if we can
-if (test "test" = "$ARG_W")
+# Assemble JSON description of wireformat for "taler-bank" if we can
+if (test "taler-bank" = "$ARG_W")
then
if (test ! -z "$ARG_BANK_URL" -a ! -z "$ARG_MERCHANT_BANK_ACCOUNT")
then
- ARG_JM="{\"type\":\"test\",\"bank_url\":\"$ARG_BANK_URL\",\"account_number\":$ARG_MERCHANT_BANK_ACCOUNT}"
+ ARG_JM="{\"type\":\"taler-bank\",\"bank_url\":\"$ARG_BANK_URL\",\"account_number\":$ARG_MERCHANT_BANK_ACCOUNT}"
# echo "Account detail: $ARG_JM"
else
echo "Bank URL or account not given, skipping JSON generation for merchant"
fi
if (test ! -z "$ARG_BANK_URL" -a ! -z "$ARG_EXCHANGE_BANK_ACCOUNT")
then
- ARG_JE="{\"type\":\"test\",\"bank_url\":\"$ARG_BANK_URL\",\"account_number\":$ARG_EXCHANGE_BANK_ACCOUNT}"
+ ARG_JE="{\"type\":\"taler-bank\",\"bank_url\":\"$ARG_BANK_URL\",\"account_number\":$ARG_EXCHANGE_BANK_ACCOUNT}"
# echo "Account detail: $ARG_JE"
else
echo "Bank URL or account not given, skipping JSON generation for exchange"
fi
else
- echo "Wire format is not 'test', not auto-generating JSON"
+ echo "Wire format is not 'taler-bank', not auto-generating JSON"
fi
###########################################
# Generate merchant-specific configuration
if (test 1 = "$ARG_M")
then
- MASTER_KEY=`$CS -f -s merchant -o KEYFILE`
+ MASTER_KEY=`$CS -f -s instance-default -o KEYFILE`
# Generate master key (if missing)
if (test ! -e "$MASTER_KEY")
@@ -184,14 +184,14 @@ then
do
$CS -s exchange-wire-$WMETHOD -o ENABLE -V YES || exit 1
-# If possible, initialize outgoing wire account details ('test' method only)
- if (test "test" = "$WMETHOD" -a ! -z "$ARG_BANK_URL")
+# If possible, initialize outgoing wire account details ('taler-bank' method only)
+ if (test "taler-bank" = "$WMETHOD" -a ! -z "$ARG_BANK_URL")
then
$CS -s exchange-wire-test -o BANK_URL -V "$ARG_BANK_URL" || exit 1
else
echo "Skipped generating wire account details for exchange"
fi
- if (test "test" = "$ARG_W" -a ! -z "$ARG_EXCHANGE_BANK_ACCOUNT")
+ if (test "taler-bank" = "$ARG_W" -a ! -z "$ARG_EXCHANGE_BANK_ACCOUNT")
then
$CS -s exchange-wire-test -o BANK_ACCOUNT_NUMBER -V "$ARG_EXCHANGE_BANK_ACCOUNT" || exit 1
else
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
index 5fc491a5d..eb0ddb415 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -389,7 +389,7 @@ handle_mhd_request (void *cls,
* Parse the configuration to determine on which port
* or UNIX domain path we should run an HTTP service.
*
- * @param section section of the configuration to parse ("exchange" or "exchange-admin")
+ * @param section section of the configuration to parse (usually "exchange")
* @param[out] rport set to the port number, or 0 for none
* @param[out] unix_path set to the UNIX path, or NULL for none
* @param[out] unix_mode set to the mode to be used for @a unix_path