[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-deployment] 06/08: sandcastle-ng: make run script show logs
From: |
gnunet |
Subject: |
[taler-deployment] 06/08: sandcastle-ng: make run script show logs |
Date: |
Mon, 04 Dec 2023 15:56:01 +0100 |
This is an automated email from the git hooks/post-receive script.
devan-carpenter pushed a commit to branch master
in repository deployment.
commit 57f70498af21fafd242ffeb4ce9b5a8b19c22662
Author: Devan Carpenter <devan@taler.net>
AuthorDate: Thu Oct 26 11:15:03 2023 -0400
sandcastle-ng: make run script show logs
The container is executing "/sbin/init" which has no output, and
prevents us from seeing any logs via the container runtime log
interface.
This change to the run script makes the "podman run" command start the
container in the background, and then proceeds to "exec" journalctl in
the newly running container. Thus allowing us to see the relevant logs
from the system services.
---
sandcastle-ng/sandcastle-run | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sandcastle-ng/sandcastle-run b/sandcastle-ng/sandcastle-run
index 1708674..ee98e18 100755
--- a/sandcastle-ng/sandcastle-run
+++ b/sandcastle-ng/sandcastle-run
@@ -37,7 +37,8 @@ fi
SETUP_NAME=${SANDCASTLE_SETUP_NAME:-demo}
-exec podman run \
+podman run \
+ -d \
-p=$SANDCASTLE_PORT_MERCHANT:$PORT_INTERNAL_MERCHANT \
-p=$SANDCASTLE_PORT_EXCHANGE:$PORT_INTERNAL_EXCHANGE \
-p=$SANDCASTLE_PORT_LIBEUFIN_BANK:$PORT_INTERNAL_LIBEUFIN_BANK \
@@ -54,3 +55,5 @@ exec podman run \
--entrypoint /sbin/init \
"$@" \
taler-base-all
+
+exec podman exec -it taler-sandcastle journalctl -f
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [taler-deployment] branch master updated (e277004 -> 20cf52d), gnunet, 2023/12/04
- [taler-deployment] 01/08: sandcastle-ng: use full registry name for base, gnunet, 2023/12/04
- [taler-deployment] 02/08: sandcastle-ng: use apt instead of dpkg, gnunet, 2023/12/04
- [taler-deployment] 08/08: sandcastle-ng: increase default debt limits, gnunet, 2023/12/04
- [taler-deployment] 06/08: sandcastle-ng: make run script show logs,
gnunet <=
- [taler-deployment] 04/08: sandcastle-ng: make run script print to console, gnunet, 2023/12/04
- [taler-deployment] 05/08: sandcastle-ng: correct external port for bank SPA, gnunet, 2023/12/04
- [taler-deployment] 03/08: sandcastle-ng: bump version tags, gnunet, 2023/12/04
- [taler-deployment] 07/08: sandcastle-ng: add setup for test.taler.net, gnunet, 2023/12/04