[vz-users] 1wirevz startet nicht

Timo Giesen giesentimo at me.com
Sat Jan 25 11:51:22 CET 2014


Hallo,

 

ich wollte gerne mit der Erweiterung von Udo Temperaturen loggen, doch
leider startet mein 1wirevz script nicht?

Folgende Fehlermeldung bekomme ich

root at raspberrypi:/home/pi# insserv 1wirevz

insserv: script 1wirevz is not an executable regular file, skipped!

 

So sieht meine Datei aus:

### BEGIN INIT INFO

# Provides: 1wirevz 

# Required-Start: rc.local

# Required-Stop: 

# Default-Start: 2

# Default-Stop: 6

# Short-Description: DS2482 I²C 1-Wire® Master to Volkszaehler RaspberryPI
deamon

### END INIT INFO

 

#!/bin/bash

 

DAEMON="/usr/local/sbin/1wirevz"

PIDFILE="/tmp/1wirevz.pid" 

 

test -f $DAEMON || exit 0

 

case "$1" in

 

   start)

        test ! -f $PIDFILE || { echo "Deamon already running!"; exit 0; }

        su -c $DAEMON pi

        ;;

 

    stop)

        killall -q 1wirevz

        rm -f /tmp/1wirevz.pid

        ;;

 

    restart)

        $0 stop

        $0 start

        ;;

 

    *)

        echo "Usage: $0 {start|stop|restart}"

        exit 1

        ;;

esac

 

 

Kann mir jemand einen Tipp geben??

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://demo.volkszaehler.org/pipermail/volkszaehler-users/attachments/20140125/991a8f6d/attachment-0001.html>


More information about the volkszaehler-users mailing list