aboutsummaryrefslogtreecommitdiff
path: root/src/testing/initialize_taler_system.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-05-17 14:44:19 +0200
committerChristian Grothoff <christian@grothoff.org>2021-05-17 14:44:25 +0200
commit6060c480d725ef920b74393d9d178e491b2d2d42 (patch)
tree0c1c69dd924ab77789a05f8ffe5b51508e2cc283 /src/testing/initialize_taler_system.sh
parente0e86588565baf0111db24b431e8a4c908017da5 (diff)
always put XXXXXX at the end (#6869)
Diffstat (limited to 'src/testing/initialize_taler_system.sh')
-rwxr-xr-xsrc/testing/initialize_taler_system.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testing/initialize_taler_system.sh b/src/testing/initialize_taler_system.sh
index 40ae0006..8b1c90d6 100755
--- a/src/testing/initialize_taler_system.sh
+++ b/src/testing/initialize_taler_system.sh
@@ -30,12 +30,12 @@ function cleanup()
# Exchange configuration file will be edited, so we create one
# from the template.
-CONF=`mktemp test_templateXXXXXX.conf`
+CONF=`mktemp test_template.conf-XXXXXX`
cp test_template.conf $CONF
TMP_DIR=`mktemp -d keys-tmp-XXXXXX`
-WALLET_DB=`mktemp test_walletXXXXXX.json`
-LAST_RESPONSE=`mktemp test_responseXXXXXX.conf`
+WALLET_DB=`mktemp test_wallet.json-XXXXXX`
+LAST_RESPONSE=`mktemp test_response.conf-XXXXXX`
# Install cleanup handler (except for kill -9)
trap cleanup EXIT