blob: a926cb3d3bfe99133dcabe349ec8a33236968cd4 (
plain) (
blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: gpsd
# REQUIRE: NETWORKING DAEMON cleanvar devfs
# BEFORE: ntpd
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable gpsd:
#
# gpsd_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable gpsd.
#
# gpsd_flags (str): Set to "" by default.
# See gpsd(8) for flags.
#
# gpsd_devices (str): Set to "" by default.
# Example: "/dev/cuaU0" for a USB serial GPS.
#
. /etc/rc.subr
name=gpsd
rcvar=`set_rcvar`
start_postcmd=start_postcmd
stop_postcmd=stop_postcmd
start_postcmd()
{
if ! checkyesno gpxlogger_enable; then
return;
fi
cd ${gpxlogger_logdir};
gpx=$(date +"${gpxlogger_format}")
touch "${pidfile_logger}" "${gpx}"
chown nobody:nobody "${pidfile_logger}" "${gpx}"
/usr/sbin/daemon -u nobody -p "${pidfile_logger}" \
${gpxlogger} ${gpxlogger_flags} > ${gpx}
}
stop_postcmd()
{
if ! checkyesno gpxlogger_enable; then
return;
fi
/bin/kill $(/bin/cat "${pidfile_logger}")
}
load_rc_config $name
# Set defaults
: ${gpsd_enable:="NO"}
: ${gpxlogger_enable:="NO"}
: ${gpxlogger_flags:="-i 600"}
: ${gpxlogger_logdir:="/var/log"}
: ${gpxlogger_format:="%d %B %Y - %H:%M.gpx"}
pidfile=/var/run/$name.pid
command=%%PREFIX%%/sbin/$name
command_args="-P $pidfile $gpsd_devices"
gpxlogger=/usr/local/bin/gpxlogger
pidfile_logger=/var/run/gpxlogger.pid
run_rc_command "$1"
|