diff options
author | John Klug <john.klug@multitech.com> | 2020-01-02 13:05:41 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2020-01-02 13:06:56 -0600 |
commit | be6b8557a4366e0e754e3c85393c4baeebcb0c1b (patch) | |
tree | 80b7527dc70a62ff9953fcc4810db81b53ff8373 /recipes-navigation | |
parent | 89f4bd5d090a0934c709405eb90dd241339626a9 (diff) | |
download | meta-mlinux-be6b8557a4366e0e754e3c85393c4baeebcb0c1b.tar.gz meta-mlinux-be6b8557a4366e0e754e3c85393c4baeebcb0c1b.tar.bz2 meta-mlinux-be6b8557a4366e0e754e3c85393c4baeebcb0c1b.zip |
gpsd takes too long to quit when there is no antenna signal
Diffstat (limited to 'recipes-navigation')
-rwxr-xr-x | recipes-navigation/gpsd/gpsd/gpsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-navigation/gpsd/gpsd/gpsd b/recipes-navigation/gpsd/gpsd/gpsd index 3f93442..b4068c9 100755 --- a/recipes-navigation/gpsd/gpsd/gpsd +++ b/recipes-navigation/gpsd/gpsd/gpsd @@ -93,7 +93,7 @@ do_stop() # 1 if daemon was already stopped # 2 if daemon could not be stopped # other if a failure occurred - /usr/sbin/start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME + /usr/sbin/start-stop-daemon --stop --quiet --signal KILL --pidfile $PIDFILE --name $NAME RETVAL="$?" [ "$RETVAL" = 2 ] && return 2 # Many daemons don't delete their pidfiles when they exit. |