summaryrefslogtreecommitdiff
blob: ad734e34d9878394f6f99145bdaa1dad046fbcf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

depend() {
	after dbus
	before ntpd
}

PIDFILE=/var/run/${SVCNAME}.pid
DAEMON=/usr/sbin/gpsd

checkconfig() {
	# Note: these GPSD_xxx var names should be kept in sync with the udev rules.
	if [ -z "${GPSD_SOCKET}" ] && [ -z "${DEVICES}" ]; then
		GPSD_SOCKET="/var/run/gpsd.sock"
	fi

	if [ -n "${GPSD_SOCKET}" ]; then
		GPSD_OPTIONS="${GPSD_OPTIONS} -F ${GPSD_SOCKET}"
	fi
}

start() {
	checkconfig
	ebegin "Starting gpsd"

	start-stop-daemon --start --quiet --pidfile ${PIDFILE} --exec ${DAEMON} -- \
		${GPSD_OPTIONS} -P ${PIDFILE} ${DEVICES}
	eend $?
}

stop() {
	ebegin "Stopping gpsd"
	start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile ${PIDFILE}
	eend $?
	rm -f ${PIDFILE}
}