2024-07-19 06:37:39 +02:00
|
|
|
# As usual this is a systemd drop-in, so I can adjust what gpsd.service does
|
|
|
|
# without having to fight with package management.
|
2024-07-18 12:03:09 +02:00
|
|
|
[Service]
|
2024-07-18 16:14:45 +02:00
|
|
|
Type=exec
|
2024-07-19 06:37:39 +02:00
|
|
|
# In case the file exists, I can throw my own additional options there
|
2024-07-18 12:03:09 +02:00
|
|
|
EnvironmentFile=-/etc/gpsd.aminda.conf
|
2024-07-19 06:37:39 +02:00
|
|
|
# Kernel module possibly required for USB GPS devices especially with Chrony?
|
2024-07-18 16:14:45 +02:00
|
|
|
ExecStartPre=-/usr/sbin/modprobe pps_ldisc
|
2024-07-19 06:37:39 +02:00
|
|
|
# Empty ExecStart= before the actual ExecStart= removes the original
|
|
|
|
# ExecStart= line
|
|
|
|
ExecStart=
|
2024-07-20 09:21:20 +02:00
|
|
|
# Maybe specify the GPS device in /etc/gpsd.aminda.conf instead?
|
|
|
|
ExecStart=/usr/sbin/gpsd --readonly --nowait --foreground $AMINDAGPSD
|
2024-07-19 06:37:39 +02:00
|
|
|
# Missing from the original unit, will reconnect all GPS says man gpsd
|
2024-07-18 16:14:45 +02:00
|
|
|
ExecReload=/usr/bin/killall -HUP gpsd
|
2024-07-19 06:37:39 +02:00
|
|
|
# Avoiding systemd considering the unit as failed.
|
2024-07-18 16:14:45 +02:00
|
|
|
Restart=always
|
|
|
|
RestartSec=5s
|
2024-07-19 06:37:39 +02:00
|
|
|
# vim: filetype=systemd
|