commit c0b93a7f28a828da2a0a055140742fb1893e3140 parent 3192719e924fe16be4fa59f42a5ad0d15f7ac6ad Author: MS <ms@taler.net> Date: Sat, 4 Mar 2023 16:54:01 +0100 Netzbon setup. Providing Nexus jobs to submit and retrieve transactions. Diffstat:
| M | netzbon/config_launch_libeufin.sh | | | 22 | ++++++++++++++++++++++ |
1 file changed, 22 insertions(+), 0 deletions(-)
diff --git a/netzbon/config_launch_libeufin.sh b/netzbon/config_launch_libeufin.sh @@ -214,3 +214,25 @@ libeufin-cli facades \ --facade-name ${LIBEUFIN_TALER_FACADE} \ ${EBICS_CONNECTION_NAME} ${LIBEUFIN_NEXUS_USERNAME} || true echo "OK" + +echo -n "Configuring the background jobs to submit/get transactions..." +# Tries every second. +# Not idempotent, FIXME #7739 +libeufin-cli accounts task-schedule \ + --task-type submit \ + --task-name exchange-payments \ + --task-cronspec "* * *" \ + exchange-at-nexus || true +echo OK + +# Tries every second. Ask C52 +echo -n Setup history fetch task.. +# Not idempotent, FIXME #7739 +libeufin-cli accounts task-schedule \ + --task-type fetch \ + --task-name exchange-history \ + --task-cronspec "* * *" \ + --task-param-level report \ + --task-param-range-type latest \ + exchange-at-nexus || true +echo OK