Ich würde gerne msntp auf meinem Debian Etch System als daemon laufen lassen und ihn beim Systemstart mitstarten.
Dazu hab ich folgendes Script als /etc/init.d/msntp.sh erstellt, und anschließend mit einem Softlink auf /etc/rcS.d/S24msntp.sh verlinkt. Leider funktioniert es aber nicht :-/
Könnt ihr mir helfen?
Hier das Script:
Code: Alles auswählen
#! /bin/bash
[ -x /usr/bin/msntp ] || exit 0 # does the file exists?
case "$1" in
start)
echo "Starting msntp"
/usr/bin/msntp -S &
pidof msntp > /var/run/msntp.pid # create pidfile
echo "Done!"
;;
stop)
echo "Stopping msntp"
killall msntp
rm -f /var/run/msntp.pid # remove pidfile
echo "Done!"
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage:$(basename $0) start | stop | restart"
exit 1
;;
esac