start-stop-daemon : impossible d'arrêter un service
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE && rm -rf $PIDFILE
echo "$NAME."
;;
Lors de l'arrêt, le processus ne s'arrête pas et un log écrit start-stop-daemon: matching only on non-root pidfile /var/run/postfwd.pid is insecure
Il faut corriger le code pour mettre :
stop) echo -n "Stopping $DESC: " start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE --user=${RUNAS} && rm -rf $PIDFILE echo "$NAME." ;;
Si systemd tourne sur la machine, il faut recharger les configurations : systemctl daemon-reload