K
K
kovalr2016-06-12 01:49:17
linux
kovalr, 2016-06-12 01:49:17

Why doesn't the pymultimonaprs service start on Ubuntu server 16.04?

The script is in /etc/init.d/pymultimonaprs

#!/bin/sh
### BEGIN INIT INFO
# Provides: pymultimonaprs
# Required-Start: $all
# Required-Stop: $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: start/stop of pymultimonaprs
### END INIT INFO

case "$1" in
 start)
   sudo pymultimonaprs --syslog &
   ;;
 stop)
   sudo killall pymultimonaprs
   ;;
 *)
   echo "Usage: /etc/init.d/pymultimonaprs {start|stop}"
   exit 1
   ;;
esac

exit 0

Made
sudo update-rc.d pymultimonaprs defaults
sudo reboot

Why does not start with the system?
Here is the manual I did www.w4dv.org/wp-content/uploads/Creating-an-APRS-i... page 18.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
sim3x, 2016-06-12
@kovalr

Find a manual in which it is configured via systemd

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question