diff options
author | Harsh Sharma <harsh.sharma@multitech.com> | 2023-04-25 17:43:43 -0500 |
---|---|---|
committer | Harsh Sharma <harsh.sharma@multitech.com> | 2023-04-25 17:43:43 -0500 |
commit | 63e834718625144f8386d6556c9a107eea3d9628 (patch) | |
tree | ca9d1858bffe8554ca2318aab057cfb533a79486 /recipes-connectivity/lora/lora-network-server | |
parent | de6267995788dc15f6551998deabc4e9c0b08b67 (diff) | |
download | meta-mlinux-63e834718625144f8386d6556c9a107eea3d9628.tar.gz meta-mlinux-63e834718625144f8386d6556c9a107eea3d9628.tar.bz2 meta-mlinux-63e834718625144f8386d6556c9a107eea3d9628.zip |
Revert "Added angel process to lns and pkf"
This reverts commit de6267995788dc15f6551998deabc4e9c0b08b67.
Diffstat (limited to 'recipes-connectivity/lora/lora-network-server')
-rwxr-xr-x | recipes-connectivity/lora/lora-network-server/lora-network-server.init | 15 |
1 files changed, 6 insertions, 9 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 e2e376b..3c2764a 100755 --- a/recipes-connectivity/lora/lora-network-server/lora-network-server.init +++ b/recipes-connectivity/lora/lora-network-server/lora-network-server.init @@ -8,7 +8,6 @@ ENABLED="yes" [ -f /etc/default/$NAME ] && source /etc/default/$NAME -angel=/sbin/angel run_dir=/var/run/lora conf_dir=/var/config/lora @@ -340,10 +339,10 @@ do_start() { echo -n "Starting $NAME: " # start network server start-stop-daemon --start --background --make-pidfile \ - --pidfile $net_server_pidfile --startas /bin/bash -- -c "exec $angel $net_server \ + --pidfile $net_server_pidfile --startas /bin/bash -- -c "exec $net_server \ -c $conf_file --lora-eui $lora_eui --lora-hw-1 $lora_hw --lora-prod-1 $lora_id $lora_2_args \ --lora-path $run_dir \ - --noconsole" + --noconsole 2>&1" if [ "$no_lora_hw" != "true" ]; then # start packet forwarder @@ -352,19 +351,17 @@ do_start() { /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" + -- -c "exec $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 -l $pkt_fwd_2_log" + -- -c "exec $pkt_fwd_2 $pkt_fwd_options -l $pkt_fwd_2_log" fi fi - renice -n -20 -p $(ps aux | grep angel | grep $(basename $pkt_fwd) | awk '{print $2}') &>/dev/null - renice -n -20 -p $(ps aux | grep angel | grep lora-net | awk '{print $2}') &>/dev/null - renice -n -20 -p $(pgrep $(basename $pkt_fwd)) &>/dev/null - renice -n -20 -p $(pgrep lora-network-se) &>/dev/null + renice -n -20 -p $(pgrep lora-network-se) + renice -n -20 -p $(pgrep $(basename $pkt_fwd)) echo "OK" } |