20 lines
507 B
SYSTEMD
20 lines
507 B
SYSTEMD
|
#-----------------------------------------#
|
||
|
# This is a Systemd service #
|
||
|
# Place this in your /etc/systemd/system/ #
|
||
|
# allowing direwolf and rtl_fm to run #
|
||
|
# along side each other as a "service" #
|
||
|
#-----------------------------------------#
|
||
|
[Unit]
|
||
|
Description=APRS @ 9600baud on RTL_FM and Direwolf
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/home/$USER/aprs/RTL-SDR_Support/9600b_RTL-SDR_APRS.sh
|
||
|
Restart=always
|
||
|
User=$USER
|
||
|
Group=$USER
|
||
|
Type=simple
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|