diff options
author | John Klug <john.klug@multitech.com> | 2016-12-15 15:16:28 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2016-12-15 15:16:28 -0600 |
commit | 8dac9167e7e93f095ff49cb900f20abb805db74f (patch) | |
tree | 9ad6c8c6a5ebbdf4a5846ada26cc36e4865334b1 /recipes-navigation/gpsd | |
parent | f2653bac5d0c5a9fcc3434d9c0f6fde4fe37e576 (diff) | |
download | meta-mlinux-8dac9167e7e93f095ff49cb900f20abb805db74f.tar.gz meta-mlinux-8dac9167e7e93f095ff49cb900f20abb805db74f.tar.bz2 meta-mlinux-8dac9167e7e93f095ff49cb900f20abb805db74f.zip |
Add nice value to GPSD
Diffstat (limited to 'recipes-navigation/gpsd')
-rwxr-xr-x | recipes-navigation/gpsd/gpsd/gpsd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-navigation/gpsd/gpsd/gpsd b/recipes-navigation/gpsd/gpsd/gpsd index ba73daf..c08be9b 100755 --- a/recipes-navigation/gpsd/gpsd/gpsd +++ b/recipes-navigation/gpsd/gpsd/gpsd @@ -52,10 +52,10 @@ do_start() # 0 if daemon has been started # 1 if daemon was already running # 2 if daemon could not be started - start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test \ + /usr/sbin/start-stop-daemon -N -20 --start --quiet --pidfile $PIDFILE --exec $DAEMON --test \ -- $GPSD_OPTIONS -P $PIDFILE $GPS_DEVICES > /dev/null \ || return 1 - start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \ + /usr/sbin/start-stop-daemon -N -20 --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \ $GPSD_OPTIONS -P $PIDFILE $GPS_DEVICES \ || return 2 } @@ -70,7 +70,7 @@ do_stop() # 1 if daemon was already stopped # 2 if daemon could not be stopped # other if a failure occurred - start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME + /usr/sbin/start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME RETVAL="$?" [ "$RETVAL" = 2 ] && return 2 # Many daemons don't delete their pidfiles when they exit. @@ -87,7 +87,7 @@ do_reload() { # restarting (for example, when it is sent a SIGHUP), # then implement that here. # - start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME + /usr/sbin/start-stop-daemon -N -20 --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME return 0 } |