summaryrefslogtreecommitdiffstats
path: root/openwrt/package/ulogd/files/ulogd.init
blob: d3863c5f2ac878d5dad05f73e2afc3e68b2a3e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

BIN=ulogd
DEFAULT=/etc/default/$BIN
LOG_D=/var/log
[ -f $DEFAULT ] && . $DEFAULT

case $1 in
 start)
  $BIN $OPTIONS
  ;;
 *)
  echo "usage: $0 (start)"
  exit 1
esac

exit $?