diff options
author | Jason Reiss <jreiss@multitech.com> | 2020-02-24 13:23:56 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2020-06-18 20:22:07 -0500 |
commit | 397b0c1b9be30af5ab8a267fdae4f58a39843e94 (patch) | |
tree | 1ac07b58d6a946e1b97efdaa895314058b206df5 | |
parent | f4c4e86dbcebac5df910faa6837025610db86453 (diff) | |
download | meta-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-x | recipes-connectivity/lora/lora-network-server/lora-network-server.init | 4 |
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 |