1
0
mirror of https://github.com/AG7GN/nexus-utilities.git synced 2025-05-16 22:50:08 -07:00

Bug fixes to aprs and pat scripts

This commit is contained in:
Steve Magnuson 2020-08-30 08:12:36 -07:00
parent 03c38949e0
commit 750f9ccef0
3 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@
#% #%
#================================================================ #================================================================
#- IMPLEMENTATION #- IMPLEMENTATION
#- version ${SCRIPT_NAME} 1.0.7 #- version ${SCRIPT_NAME} 1.0.8
#- author Steve Magnuson, AG7GN #- author Steve Magnuson, AG7GN
#- license CC-BY-SA Creative Commons License #- license CC-BY-SA Creative Commons License
#- script_id 0 #- script_id 0
@ -493,7 +493,7 @@ do
# for P in ${YAD_PIDs[@]} $clearTextInfo_PID # for P in ${YAD_PIDs[@]} $clearTextInfo_PID
for P in $clearTextInfo_PID ${YAD_PIDs[@]} for P in $clearTextInfo_PID ${YAD_PIDs[@]}
do do
ps x | egrep -q "^$P" && kill $P kill $P >/dev/null 2>&1
done done
rm -f $TMPDIR/CONFIGURE_APRS.txt rm -f $TMPDIR/CONFIGURE_APRS.txt

View File

@ -15,7 +15,7 @@
#% #%
#================================================================ #================================================================
#- IMPLEMENTATION #- IMPLEMENTATION
#- version ${SCRIPT_NAME} 1.7.0 #- version ${SCRIPT_NAME} 1.7.1
#- author Steve Magnuson, AG7GN #- author Steve Magnuson, AG7GN
#- license CC-BY-SA Creative Commons License #- license CC-BY-SA Creative Commons License
#- script_id 0 #- script_id 0
@ -427,7 +427,7 @@ do
[[ $pat_PID == "" ]] || kill $pat_PID >/dev/null 2>&1 [[ $pat_PID == "" ]] || kill $pat_PID >/dev/null 2>&1
for P in $clearTextInfo_PID ${YAD_PIDs[@]} for P in $clearTextInfo_PID ${YAD_PIDs[@]}
do do
ps x | egrep -q "^$P" && kill $P kill $P >/dev/null 2>&1
done done
# If an unrelated pat is running, kill it too # If an unrelated pat is running, kill it too
#pgrep pat >/dev/null && pkill pat #pgrep pat >/dev/null && pkill pat

View File

@ -1 +1 @@
VERSION="2.3.19" VERSION="2.3.20"