Msntp

Aus metasec wiki
Wechseln zu: Navigation, Suche

msntp installieren

apt-get install msntp


Init Script für msntp erstellen

vi /etc/init.d/msntp

nachfolgenden Inhalt einfügen:

#! /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

ausführbar machen

chmod +x /etc/init.d/msntp

und als Bootscript aktivieren

update-rc.d msntp defaults

zum Ende hin, noch den Dienst starten

/etc/init.d/msntp start

das wars