Create Service To Automatically Start Mavproxy
Notes
Here is the .service file we create with systemd
[Unit]
Description=Open up multiple ports for ArduPilot connectivity
After=network-online.target
[Service]
User=root
ExecStart=/usr/local/bin/droneshowmav.sh
KillSignal=SIGINT
Restart=always
WorkingDirectory=/usr/local/bin
[Install]
WantedBy=multi-user.target
