Add ntpclient config files by Carlos Sobrinho, thanks ! (#1052)
[openwrt/svn-archive/archive.git] / net / ulogd / files / ulogd.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 BIN=ulogd
5 DEFAULT=/etc/default/$BIN
6 LOG_D=/var/log
7
8 start() {
9 [ -f $DEFAULT ] && . $DEFAULT
10 $BIN $OPTIONS
11 }
12
13 stop() {
14 killall $BIN
15 }