#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org


START=20

start() {
	if ps -ef | grep -v grep | grep timer_handler > /dev/null
	then
        echo "timer_handler is already running"
	else
        /sbin/timer_handler &
    fi
}

restart() {
	start
}

