Answer the question
In order to leave comments, you need to log in
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
sudo update-rc.d pymultimonaprs defaults
sudo reboot
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question