diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-03-25 19:30:47 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-03-25 19:30:47 +0100 |
commit | 4013b2900fb07a22113540c9ff385b7f0e5c0c7e (patch) | |
tree | ff703b35d45eb4780d8ace35783d9bc70ff037f7 /src/auditor/setup.sh | |
parent | df9b07333145837c3cf629381f16b8b6ab062c4a (diff) |
more work on auditor tests
Diffstat (limited to 'src/auditor/setup.sh')
-rwxr-xr-x | src/auditor/setup.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/auditor/setup.sh b/src/auditor/setup.sh index e5b772e32..bb17e92ae 100755 --- a/src/auditor/setup.sh +++ b/src/auditor/setup.sh @@ -84,10 +84,10 @@ function stop_libeufin() function launch_libeufin () { - libeufin-bank serve \ - --no-auth \ - --port 8082 \ - > "${MY_TMP_DIR}/libeufin-bank-stdout.log" \ - 2> "${MY_TMP_DIR}/libeufin-bank-stderr.log" & - echo $! > "${MY_TMP_DIR}/libeufin-bank.pid" + libeufin-bank serve \ + -c "$CONF" \ + -L "INFO" \ + > "${MY_TMP_DIR}/libeufin-bank-stdout.log" \ + 2> "${MY_TMP_DIR}/libeufin-bank-stderr.log" & + echo $! > "${MY_TMP_DIR}/libeufin-bank.pid" } |