From a094bb4aa9df0c9ffa0f49a9d5718829f6a11e3e Mon Sep 17 00:00:00 2001 From: Jack Murdock Date: Wed, 28 Aug 2019 11:15:28 -0700 Subject: [PATCH] adding logs to stdout --- simulator/simulate | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/simulator/simulate b/simulator/simulate index fed87c5..91f1149 100644 --- a/simulator/simulate +++ b/simulator/simulate @@ -43,15 +43,20 @@ parodus --hw-model=aker-testing \ --webpa-backoff-max=2 \ --webpa-interface-used=eth0 \ --webpa-url=$URL \ - --force-ipv4 > /dev/null & + --force-ipv4 & +P1=$! aker -p tcp://127.0.0.1:$parodus_port \ -c tcp://127.0.0.1:$aker_port \ -w echo \ -d /tmp/aker-data.msgpack \ -f /tmp/aker-data.msgpack.md5 \ - -m 128 > /dev/null & + -m 128 & +P2=$! mock_tr181 -p $parodus_port \ -c $mocktr181_port \ - -d /etc/mock_tr181.json > /dev/null + -d /etc/mock_tr181.json & +P3=$! + +wait $P1 $P2 $P3