probonopd / vcontrold-for-openwrt

Control Viessmann heating systems such as the Vitotronic 200 KW 2 from OpenWrt
http://openv.wikispaces.com/vcontrold
8 stars 6 forks source link

Fix init script for OpenWrt #1

Closed probonopd closed 9 years ago

probonopd commented 9 years ago

The init script should be replaced with

#!/bin/sh /etc/rc.common

START=90
STOP=10

DAEMON=/usr/sbin/vcontrold

start() {
        service_start $DAEMON
}

stop() {
        service_stop $DAEMON
}

Pull requests are highly welcome.

probonopd commented 9 years ago

Done