summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Reiss <jreiss@multitech.com>2020-02-24 13:23:56 -0600
committerJohn Klug <john.klug@multitech.com>2020-06-18 20:22:07 -0500
commit397b0c1b9be30af5ab8a267fdae4f58a39843e94 (patch)
tree1ac07b58d6a946e1b97efdaa895314058b206df5
parentf4c4e86dbcebac5df910faa6837025610db86453 (diff)
downloadmeta-mlinux-397b0c1b9be30af5ab8a267fdae4f58a39843e94.tar.gz
meta-mlinux-397b0c1b9be30af5ab8a267fdae4f58a39843e94.tar.bz2
meta-mlinux-397b0c1b9be30af5ab8a267fdae4f58a39843e94.zip
lora: update LNS init script to remove PKF log file
-rwxr-xr-xrecipes-connectivity/lora/lora-network-server/lora-network-server.init4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-connectivity/lora/lora-network-server/lora-network-server.init b/recipes-connectivity/lora/lora-network-server/lora-network-server.init
index b8b1f6f..b619d8c 100755
--- a/recipes-connectivity/lora/lora-network-server/lora-network-server.init
+++ b/recipes-connectivity/lora/lora-network-server/lora-network-server.init
@@ -208,12 +208,12 @@ do_start() {
sleep 4
/usr/sbin/start-stop-daemon --chdir $run_dir/1 --start --background --make-pidfile \
--pidfile $pkt_fwd_pidfile --startas /bin/bash \
- -- -c "exec $angel $pkt_fwd $pkt_fwd_options 2>&1 >> $pkt_fwd_log"
+ -- -c "exec $angel $pkt_fwd $pkt_fwd_options 2>&1"
if [ "$dual_cards_installed" == "true" ]; then
/usr/sbin/start-stop-daemon --chdir $run_dir/2 --start --background --make-pidfile \
--pidfile $pkt_fwd_2_pidfile --startas /bin/bash \
- -- -c "exec $angel $pkt_fwd_2 $pkt_fwd_options 2>&1 >> $pkt_fwd_2_log"
+ -- -c "exec $angel $pkt_fwd_2 $pkt_fwd_options 2>&1"
fi
fi